blog/themes/pelican-striped-html5up/templates/page.html
Marc Beninca 3b5262ab5e themes
2021-11-08 23:46:35 +01:00

15 lines
367 B
HTML

{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block content %}
<h1>{{ page.title }}</h1>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
{% if page.modified %}
<p>
Last updated: {{ page.locale_modified }}
</p>
{% endif %}
{% endblock %}