blob: 0440afaa3156acc7d6282565e44295e25f2b27ba (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block language %}
{% set translations = section.translations %}
{% include "translation-links.html" %}
{% endblock language %}
{% block content %}
<h1>{{ section.title }}</h1>
{{ section.description }}
<section class="post-list">
{% for post in section.pages | reverse %}
<article class="post">
{% include "posts/header.html" %}
<section class="post-summary">
{% if post.summary %}
{{ post.summary | safe }}
{% else %}
{{ post.content | safe }}
{% endif %}
</section>
<footer>
{% if post.summary %}
<a href="{{ post.permalink }}">
{{ trans(key="moreprompt", lang=post.lang) }}
</a>
{% endif %}
</footer>
</article>
{% endfor %}
</section>
{% endblock content %}
|