alcatel/django/templates/document/document.html
author cobled
Wed, 14 Aug 2013 16:37:26 +0200
changeset 38 b5bddcba23c1
permissions -rw-r--r--
last version



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