jean-cloud_website/themes/jean-cloud/templates/page.html
2022-12-13 08:32:51 +01:00

25 lines
595 B
HTML

{% extends "base.html" %}
{% block html_lang %}{{ page.lang }}{% endblock %}
{% if page.save_as %}
{% block title %}{{ SITENAME }} - {{ page.title }}{%endblock%}
{% endif %}
{% block head %}
{{ super() }}
{% import 'translations.html' as translations with context %}
{% if translations.entry_hreflang(page) %}
{{ translations.entry_hreflang(page) }}
{% endif %}
{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
{% endblock %}