]> git.0d.be Git - panikweb.git/blob - panikweb_templates/templates/combo/page_template_sidebar.html
templates: style topiks submenus
[panikweb.git] / panikweb_templates / templates / combo / page_template_sidebar.html
1 {% extends "base.html" %}
2 {% load combo %}
3
4 {% block title %}{{ page.title }}{% endblock %}
5
6 {% block toptitle %}
7 <h1 class="top"><a href="{{ page.get_parents_and_self.0.get_online_url }}">{{ page.get_parents_and_self.0.title }}</a></h1>
8 {% endblock %}
9
10 {% block nav %}
11 {% endblock %}
12
13 {% block main %}
14
15 <div class="wrapper navigation" id="main-{{page.get_parents_and_self.0.slug}}" >
16         <div id="fiber-content" class="leftPart">
17                 {% if page.get_parents_and_self.0.title != page.title %}
18                 <h1>{{ page.title }}</h1>
19                 {% endif %}
20                 <div class="text">{% placeholder "content" %}</div>
21         </div>
22         <div id="fiber-nav" class="sub rightPart custom marged">
23                 {% block menu %}{% show_menu level=1 depth=2 %}{% endblock %}
24                 {% placeholder "sidebar" %}
25         </div>
26 </div>
27
28 {% endblock %}