1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {% extends "base.html" %}
- {% block title %}{{ section.title }}{% endblock title %}
- {% block header_logo %}
- <p class="header-title">
- <img class="logo" src="{{ get_url(path="images/mask.jpg") }}" alt="{{ section.title }}" title="Logo"/>
- </p>
- {% endblock header_logo %}
- {% block content %}
- <div>
- <h1>{{ config.extra.blog_title}}</h1>
- <p>{{ config.extra.description }}</p>
- {% set core_rules_href = get_url(path="rules/core") %}
- <p>Get started with the <a href="{{ core_rules_href }}">core rules</a>.</p>
- <p>Distributed under the {{ config.extra.license }}.</p>
- </div>
- <div>
- <h2>Headlines</h2>
- <p>
- Fenris Punk is playable, but please consider the available rules
- in Alpha state.
- </p>
- <p>
- As of December 9, 2024 most website content might be unavailable
- during the migration.
- </p>
- </div>
- <div>
- <h2>Recent Entries</h2>
- <ul>
- {% set lore_section = get_section(path="archive/lore/_index.md") %}
- {% set lore_pages = lore_section.pages %}
- {% set news_section = get_section(path="archive/news/_index.md") %}
- {% set news_pages = news_section.pages %}
- {% set sessions_section = get_section(path="archive/sessions/_index.md") %}
- {% set sessions_pages = sessions_section.pages %}
- {% set section_pages = section.pages %}
- {% set all_pages = section_pages | concat(with=lore_pages) | concat(with=news_pages) | concat(with=sessions_pages) %}
- {% set sorted_pages = all_pages | sort(attribute="date") | reverse %}
- {% for page in sorted_pages | slice(end=5) %}
- <li>
- <h3>{{ page.date }} • <a href="{{ page.permalink }}">{{ page.title }}</a></h3>
- {% if page.description %}
- <p>{{ page.description }}</p>
- {% elif page.summary %}
- <p>{{ page.summary }}</p>
- {% else %}
- <p>{{ page.title }}....</p>
- {% endif %}
- </li>
- {% endfor %}
- </ul>
- </div>
- {% endblock content %}
|