alcatel/django/templates/document/document.html
author Nicolas Sauret <nicolas.sauret@iri.centrepompidou.fr>
Fri, 18 Apr 2014 14:31:58 +0200
changeset 51 79833eaa394a
parent 38 b5bddcba23c1
permissions -rw-r--r--
set up second level for navigation



{% 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 %}