summaryrefslogtreecommitdiff
path: root/theme/cccevents/templates/page.html
diff options
context:
space:
mode:
Diffstat (limited to 'theme/cccevents/templates/page.html')
-rw-r--r--theme/cccevents/templates/page.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/theme/cccevents/templates/page.html b/theme/cccevents/templates/page.html
new file mode 100644
index 0000000..0d5ff64
--- /dev/null
+++ b/theme/cccevents/templates/page.html
@@ -0,0 +1,26 @@
1{% extends "base.html" %}
2
3{% block title %}{{ SITENAME }} | {{ page.longtitle }}{%endblock%}
4
5{% block translation %}
6{% import 'translations.html' as translations with context %}
7{{ translations.translations_for(page) }}
8{% endblock %}
9
10{% block translation2 %}
11{% import 'translations.html' as translations with context %}
12{{ translations.translations_for(page) }}
13{% endblock %}
14
15{% block content_title %}
16<h1 class="post-title">{{ page.longtitle }}</h1>
17
18{% endblock %}
19{% block content_meta %}
20{% endblock %}}
21
22
23{% block content %}
24{{ page.content }}
25{% endblock %}
26