incand/templates/poema.html

11 lines
278 B
HTML

{% extends "base.html" %}
{% block content %}
<article class="poema">
<h1 class="title">{{ page.title }}</h1>
<time>
{{ page.date | date(format="%A, %e de %B de %Y", locale="pt_BR") }}
</time>
{{ page.content | safe }}
</article>
{% endblock content %}