{% extends "base.html" %} {% block html_lang %}{{ page.lang }}{% endblock html_lang %} {% block title %} {{ page.title|striptags }} {% endblock title %} {% block head %} {% import 'translations.html' as translations with context %} {{ translations.entry_hreflang(page) }} {% endblock head %} {% block meta_description %} {{ m.render_meta_description(page) }} {% endblock meta_description %} {% block top_center %}

{{ page.title }}

{% endblock top_center %} {% block content %} {% import 'translations.html' as translations with context %} {{ translations.translations_for(page) }} {# Named block around the body alone, as Pelican 4.12.0 gave its own page.html, so an override can replace what a page renders without restating the wrapper. #}
{% block page_content %} {{ page.content }} {% endblock page_content %}
{% endblock content %}