blob: 6c40e4ba87d572d58582e4c7e46d42c9eac2e738 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
<h3>{{ page.title }}</h3>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">PDF</a>{% endif %}
{{ page.content }}
{% endblock %}
|