incand/templates/poema.html

13 lines
269 B
HTML

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