flux.vision/web/mc-pelican/templates/page.html
2026-05-16 11:34:31 +03:00

16 lines
422 B
HTML

{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block legend %}{{ page.title|upper }}{% 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 %}