Projet

Général

Profil

Télécharger (671 octets) Statistiques
| Branche: | Tag: | Révision:

root / corbo / templates / base.html @ e0d858ba

1
{% load i18n static %}
2
<html>
3
  <head>
4
    <title>Corbo :: {% block title %}{%trans "Announces" %}{% endblock %}</title>
5
    <link rel='stylesheet' type='text/css' href='{% static "css/corbo.css" %}' />
6
  </head>
7
  <body>
8
    <header>
9
      {% if user.is_authenticated %}
10
      <div class="user">
11
        {% trans "Welcome" %} {{ user.get_full_name }}
12
        <a href="{% url "logout" %}">{% trans "Logout" %}</a>
13
      </div>
14
      {% endif %}
15
      <h1>{% trans "Announces" %}</h1>
16
    </header>
17
    <div id="content">
18
      {% block content %}
19
      {% endblock %}
20
    </div>
21
    <footer>
22
      Powered by Corbo. &copy 2015 Entr'ouvert
23
    </footer>
24
  </body>
25
</html>
(1-1/3)