You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
725 B
31 lines
725 B
2 years ago
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% for page in section.pages | reverse %}
|
||
|
<h1><a href="{{ page.permalink }}" class="stealth">{{ page.title }}</a></h1>
|
||
|
{% if page.date %}
|
||
|
<span>{{ page.date | date(format="%Y-%m-%d") }}</span>
|
||
|
{% endif %}
|
||
|
{% if page.summary %}
|
||
|
<p>{{ page.summary | safe }}</p>
|
||
|
{% endif %}
|
||
|
{% if not loop.last %}<hr>{% endif %}
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block footer %}
|
||
|
<span>
|
||
|
© {{ now() | date(format='%Y') }}
|
||
|
{% if section.extra.author %}
|
||
|
{{ section.extra.author }}
|
||
|
{% elif config.extra.author %}
|
||
|
{{ config.extra.author }}
|
||
|
{% endif %}
|
||
|
</span>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block aside %}
|
||
|
{% for k, thing in section %}
|
||
|
{{ k }}: {{ thing }}<br>
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|