summaryrefslogtreecommitdiff
path: root/theme/cccevents/templates/page.html
blob: 0d5ff642a517e76e400d0757da4c09a4a15e95b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends "base.html" %}

{% block title %}{{ SITENAME }} | {{ page.longtitle }}{%endblock%}

{% block translation %}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{% endblock %}

{% block translation2 %}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{% endblock %}

{% block content_title %}
<h1 class="post-title">{{ page.longtitle }}</h1>

{% endblock %}
{% block content_meta %}
{% endblock %}}


{% block content %}
{{ page.content }}
{% endblock %}