]> git.0d.be Git - panikweb.git/blobdiff - panikweb/templates/tpl-default.html
move static & templates to panikweb project directory
[panikweb.git] / panikweb / templates / tpl-default.html
diff --git a/panikweb/templates/tpl-default.html b/panikweb/templates/tpl-default.html
new file mode 100644 (file)
index 0000000..c96ad21
--- /dev/null
@@ -0,0 +1,31 @@
+{% extends "base.html" %}
+{% load fiber_tags %}
+
+{% block title %}{{ fiber_page.title }}{% endblock %}
+
+{% block toptitle %}
+<h1 class="top">À propos</h1>
+{% endblock %}
+
+{% block nav %}
+<div class="mainSub">
+           <nav class="distributed">
+                   {% show_menu "main-menu" 1 1 "all" %}
+           </nav>
+</div>
+{% endblock %}
+
+{% block main %}
+
+<div class="wrapper navigation">
+       <div id="fiber-content" class="leftPart">
+               <h2 class="title">{{ fiber_page.title }}</h2>
+
+               <div class="text">{% show_page_content "main" %}</div>
+       </div>
+       <div id="fiber-nav" class="sub rightPart custom marged">
+                           {% show_menu "main-menu" 2 3 "all_descendants" %}
+       </div>
+</div>
+
+{% endblock %}