diff docs/templates/doc.html @ 243:26e59f837558

docs: Add embryo of a documentation website.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 19 Feb 2015 08:09:17 -0800
parents
children a5d21fac8e3f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/templates/doc.html	Thu Feb 19 08:09:17 2015 -0800
@@ -0,0 +1,33 @@
+{% extends "default.html" %}
+
+{% block header %}
+<header class="documentation">
+    <h1>{{ page.title }}</h1>
+</header>
+{% endblock %}
+
+{% block content %}
+<div class="container">
+    <section class="col-md-8">
+    {{ content|raw }}
+    </section>
+    <aside class="col-md-4">
+        <ul class="doc-level1">
+        {% for p in family.root %}
+        {% if p.is_dir and p.is_page %}
+            <li><a href="{{p.url}}">{{p.title}}</a>
+                <ul class="doc-level2">
+                {% for p2 in p.children %}
+                    <li><a href="{{p2.url}}">{{p2.title}}</a></li>
+                {% endfor %}
+                </ul>
+            </li>
+        {% elif not p.is_dir and p.order %}
+            <li><a href="{{p.url}}">{{p.title}}</a></li>
+        {% endif %}
+        {% endfor %}
+        </ul>
+    </aside>
+</div>
+{% endblock %}
+