49 lines
1.2 KiB
HTML
49 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{% block html_lang %}{{ page.lang }}{% endblock %}
|
|
|
|
{% block title %}{{ SITENAME|striptags }} - {{ page.title|striptags }}{%endblock%}
|
|
|
|
{% block head %}
|
|
{% if page.status == "hidden" %}
|
|
<meta name="robots" content="noindex">
|
|
<meta name="robots" content="nofollow">
|
|
<meta name="robots" content="noarchive">
|
|
{% endif %}
|
|
|
|
{{ super() }}
|
|
|
|
{% import 'translations.html' as translations with context %}
|
|
{% if translations.entry_hreflang(page) %}
|
|
{{ translations.entry_hreflang(page) }}
|
|
{% endif %}
|
|
|
|
<link rel="canonical" href="{{ SITEURL }}/{{ page.url }}" />
|
|
|
|
|
|
{% endblock %}
|
|
{% block somemorehead %}
|
|
{% if page.specialcss %}
|
|
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css-include/{{ page.specialcss }}">
|
|
{% endif %}
|
|
{% endblock somemorehead %}
|
|
|
|
|
|
{% block content %}
|
|
<article>
|
|
<header>
|
|
<h2>{{ page.title }}</h2>
|
|
</header>
|
|
{% import 'translations.html' as translations with context %}
|
|
{{ translations.translations_for(page) }}
|
|
|
|
{{ page.content }}
|
|
|
|
{% if page.modified %}
|
|
<footer>
|
|
<p>
|
|
Last updated: {{ page.locale_modified }}
|
|
</p>
|
|
</footer>
|
|
{% endif %}
|
|
</article>
|
|
{% endblock %}
|