incand/templates/poesia.html

22 lines
532 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="poesia">
<h1 class="title">
{{ section.title }}
</h1>
<ul>
{% for page in section.pages %}
<li>
<time>
{{ page.date | date(format="%d/%m/%y", locale="pt_BR") }}
</time>
&mdash;
<a href="{{ page.permalink | safe }}">
{{ page.title | default(value="Sem título") }}
</a>
</li>
{% endfor %}
</ul>
</div>
{% endblock content %}