19 lines
720 B
HTML
19 lines
720 B
HTML
{% extends "base.html" %}
|
|
{% block title %} {% endblock %}
|
|
{% block content %}
|
|
<section id="content" class="body">
|
|
<h2 class="content-title">
|
|
{{ page.title }}
|
|
{% if page.translations %}
|
|
<a href="{{ SITEURL }}/{{ page.url }}" class="btn btn-info xsmall">{{ page.lang or DEFAULT_LANG }}</a>
|
|
{% for translation in page.translations %}
|
|
<a href="{{ SITEURL }}/{{ translation.url }}" class="btn btn-info xsmall">{{ translation.lang }}</a>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</h2>
|
|
{% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
|
|
the pdf</a>{% endif %}
|
|
{{ page.content }}
|
|
</section>
|
|
{% endblock %}
|