1
0
Fork 0
forked from github/pelican

Fix #3233 -- Simple theme classless semantic HTML

This commit is contained in:
Paolo Melchiorre 2023-11-11 14:10:08 +01:00
commit 6059675d55
No known key found for this signature in database
GPG key ID: 5F8222398E1ED035
27 changed files with 163 additions and 119 deletions

View file

@ -13,15 +13,21 @@
{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
<article>
<header>
<h2>{{ page.title }}</h2>
</header>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
{% if page.modified %}
<footer>
<p>
Last updated: {{ page.locale_modified }}
</p>
</footer>
{% endif %}
</article>
{% endblock %}