Here goes something

This commit is contained in:
Juno Takano 2025-09-03 22:19:25 -03:00
commit dab293cdd5
6 changed files with 59 additions and 0 deletions

13
templates/poesia.html Normal file
View file

@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
<ul>
{% for page in section.pages %}
<li>{{ page.date }} &mdash; <a href="{{ page.permalink | safe }}">{{ page.title | default(value="Sem título") }}</a></li>
{% endfor %}
</ul>
{% endblock content %}