alcatel/django/templates/document/document.html
changeset 38 b5bddcba23c1
equal deleted inserted replaced
37:3848e1813a30 38:b5bddcba23c1
       
     1 
       
     2 
       
     3 {% extends "base.html" %}
       
     4 {% comment %}
       
     5 
       
     6 This is the main template for all portal pages.
       
     7 
       
     8 {% endcomment %}
       
     9 
       
    10 {% block head %}
       
    11     <title>Periplus | {% block title %}{% endblock %}</title>
       
    12 {% endblock %}
       
    13 
       
    14 {% block body %}
       
    15 
       
    16     <header>
       
    17         <h1>Periplus | Web Portal</h1>
       
    18     </header>
       
    19 
       
    20     <section>
       
    21         <ul>
       
    22             <li><a href="/">home</a></li>
       
    23             <li><a href="/logout/">logout</a></li>
       
    24         </ul>
       
    25     </section>
       
    26 
       
    27     {% block content %}{% endblock %}
       
    28 
       
    29     <footer>
       
    30         <span>&copy; 2012, Periplus partners</span>
       
    31     </footer>
       
    32 
       
    33 {% endblock %}
       
    34 
       
    35 
       
    36