Add Simple CSS and set date formats on templates

This commit is contained in:
Juno Takano 2025-09-21 00:24:55 -03:00
commit 70cdfb1141
5 changed files with 60 additions and 3 deletions

View file

@ -6,8 +6,13 @@
</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>
<li>
{{ page.date | date(format="%d/%m/%y", locale="pt_BR") }}
&mdash;
<a href="{{ page.permalink | safe }}">
{{ page.title | default(value="Sem título") }}
</a>
</li>
{% endfor %}
</ul>
{% endblock content %}