You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
601 B
19 lines
601 B
{% extends "base.html" %} |
|
{% block html_lang %}{{ page.lang }}{% endblock %} |
|
{% block title %}{{ page.title|striptags }}{% endblock %} |
|
|
|
{% block extra_head %} |
|
{% import 'translations.html' as translations with context %} |
|
{% if translations.entry_hreflang(page) %} |
|
{{ translations.entry_hreflang(page) }} |
|
{% endif %} |
|
{% endblock %} |
|
|
|
{% block content %} |
|
<section id="content" class="body"> |
|
<h1 class="entry-title">{{ page.title }}</h1> |
|
{% import 'translations.html' as translations with context %} |
|
{{ translations.translations_for(page) }} |
|
{{ page.content }} |
|
</section> |
|
{% endblock %}
|
|
|