We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69feabf commit 411c79fCopy full SHA for 411c79f
1 file changed
theme/templates/page.html
@@ -1,13 +1,6 @@
1
{% extends "!simple/page.html" %}
2
3
-{% block content %}
4
- <article>
5
- <header>
6
- <h2>{{ page.title }}</h2>
7
- </header>
8
- {% import 'translations.html' as translations with context %}
9
- {{ translations.translations_for(page) }}
10
-
+{% block page_content %}
11
{% if page.links %}
12
<div class="aio-post-links">
13
{% for link in page.links %}
@@ -16,14 +9,5 @@ <h2>{{ page.title }}</h2>
16
</div>
17
{% endif %}
18
19
- {{ page.content }}
20
21
- {% if page.modified %}
22
- <footer>
23
- <p>
24
- Last updated: {{ page.locale_modified }}
25
- </p>
26
- </footer>
27
- {% endif %}
28
- </article>
+ {{ super() }}
29
{% endblock %}
0 commit comments