alcatel/django/templates/document/document.html
changeset 38 b5bddcba23c1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/alcatel/django/templates/document/document.html	Wed Aug 14 16:37:26 2013 +0200
@@ -0,0 +1,36 @@
+
+
+{% extends "base.html" %}
+{% comment %}
+
+This is the main template for all portal pages.
+
+{% endcomment %}
+
+{% block head %}
+    <title>Periplus | {% block title %}{% endblock %}</title>
+{% endblock %}
+
+{% block body %}
+
+    <header>
+        <h1>Periplus | Web Portal</h1>
+    </header>
+
+    <section>
+        <ul>
+            <li><a href="/">home</a></li>
+            <li><a href="/logout/">logout</a></li>
+        </ul>
+    </section>
+
+    {% block content %}{% endblock %}
+
+    <footer>
+        <span>&copy; 2012, Periplus partners</span>
+    </footer>
+
+{% endblock %}
+
+
+