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

@ -4,6 +4,10 @@
<h1 class="title">
{{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
<p class="subtitle">
<strong>
{{ page.date | date(format="%A, %e de %B de %Y", locale="pt_BR") }}
</strong>
</p>
{{ page.content | safe }}
{% endblock content %}