]> git.0d.be Git - panikweb.git/blob - panikweb_templates/templates/tpl-default.html
misc: run manage.py with python3
[panikweb.git] / panikweb_templates / templates / tpl-default.html
1 {% extends "base.html" %}
2 {% load fiber_tags %}
3
4 {% block title %}{{ fiber_page.title }}{% endblock %}
5
6 {% block toptitle %}
7 <h1 class="top">À propos</h1>
8 {% endblock %}
9
10 {% block nav %}
11 <div class="mainSub">
12             <nav class="distributed">
13                     {% show_menu "main-menu" 1 1 "all" %}
14             </nav>
15 </div>
16 {% endblock %}
17
18 {% block main %}
19
20 <div class="wrapper navigation">
21         <div id="fiber-content" class="leftPart">
22                 <h2 class="title">{{ fiber_page.title }}</h2>
23
24                 <div class="text">{% show_page_content "main" %}</div>
25         </div>
26         <div id="fiber-nav" class="sub rightPart custom marged">
27                             {% show_menu "main-menu" 2 3 "all_descendants" %}
28         </div>
29 </div>
30
31 {% endblock %}