blob: 7614c61d7f322c94396de986f9ae69d61d9381f2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
{% 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 %}
|