aboutsummaryrefslogtreecommitdiffstats
path: root/built-texts/templates/page.html
blob: 6c0e36a879ed9c40cdc2cb65cdd4c0cb2d4288c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}
{% block title %} {% endblock %}
{% block content %}        
<section id="content" class="body span10">    
    <h2 class="content-title">{{ page.title }}</h2>
    {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
    the pdf</a>{% endif %}
    {{ page.content }}
</section>
{% endblock %}