Projet

Général

Profil

Télécharger (1,13 ko) Statistiques
| Branche: | Tag: | Révision:

univnautes / usr / local / univnautes / sp / sp / templates / base.html @ 6c62895c

1
{% load static %}<!DOCTYPE html>
2
<html>
3
  <head>
4
    <meta charset="utf-8"/>
5
    <title>{% block page-title %}eduspot{% endblock %}</title>
6
    {% block js %}{% endblock %}
7
    {% block css %}{% endblock %}
8
    <link rel="stylesheet" type="text/css" media="all" href="{% static "univnautes/univnautes.css" %}" />
9
  </head>
10
  <body {% block bodyargs %}{% endblock %}>
11
    {% block page-begin %}{% endblock %}
12
    {% block wrapper %}
13
    <div id="wrap">
14
    {% endblock %}
15
      {% if not popup %}
16
      <div id="header">
17
        {% block header %}
18
        <h1>Accès eduspot</h1>
19
        {% endblock %}
20
      </div>
21
      {% endif %}
22
      <div id="content">
23
        {% if messages %}
24
        <div id="messages">
25
            <ul>
26
            {% for message in messages %}
27
              <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
28
            {% endfor %}
29
            </ul>
30
        </div>
31
        {% endif %}
32
        {% block content %}{% endblock %}
33
      </div>
34
      <div id="footer">
35
        {% block footer %}{% endblock %}
36
      </div>
37
    </div>
38
    {% block page-end %}{% endblock %}
39
  </body>
40
</html>
41
       
42

    
(1-1/2)