aboutsummaryrefslogtreecommitdiffstats
path: root/notmyidea-cms-fr/templates/page.html
blob: 2bf3dabdfc33e59792cf6815b1f186f4adc1efc8 (plain)
1
2
3
4
5
6
7
8
9
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}        
<section id="content" class="body">    
    <h1 class="entry-title">{{ page.title }}</h1>
    {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">Télécharger le PDF</a>{% endif %}
    {{ page.content }}
</section>
{% endblock %}