2020-07-28 01:53:20 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block html_lang %}{{ page.lang }}{% endblock %}
|
|
|
|
{% block title %}{{ page.title }}{% endblock %}
|
|
|
|
|
|
|
|
{% block extra_head %}
|
|
|
|
{% import 'translations.html' as translations with context %}
|
|
|
|
{% if translations.entry_hreflang(page) %}
|
|
|
|
{{ translations.entry_hreflang(page) }}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2020-08-04 15:24:47 +02:00
|
|
|
{% block body_classes %}
|
|
|
|
page-slug--{{page.slug}}
|
|
|
|
{% endblock %}
|
|
|
|
|
2020-07-28 01:53:20 +02:00
|
|
|
{% block content %}
|
2020-08-04 15:24:47 +02:00
|
|
|
<section id="content" class="body page-slug--{{page.slug}}">
|
2020-07-28 01:53:20 +02:00
|
|
|
<h1 class="entry-title">{{ page.title }}</h1>
|
|
|
|
{% import 'translations.html' as translations with context %}
|
|
|
|
{{ translations.translations_for(page) }}
|
|
|
|
{{ page.content }}
|
|
|
|
</section>
|
|
|
|
{% endblock %}
|
|
|
|
|