| author | cavaliet |
| Wed, 16 Jul 2014 15:15:50 +0200 | |
| changeset 293 | b33caeba7faa |
| parent 288 | 0bb9c29cd41d |
| child 301 | 3ec8fb1afed8 |
| permissions | -rw-r--r-- |
| 170 | 1 |
{% load analytics %} |
| 293 | 2 |
{% load i18n %} |
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
272
diff
changeset
|
3 |
{% load static %} |
| 135 | 4 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
5 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|
6 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{LANGUAGE_CODE}}" lang="{{LANGUAGE_CODE}}"> |
|
| 131 | 7 |
<head> |
8 |
<meta charset="utf-8" /> |
|
| 135 | 9 |
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" /> |
| 131 | 10 |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
| 135 | 11 |
<meta http-equiv="content-language" content="{{LANGUAGE_CODE}}" /> |
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
272
diff
changeset
|
12 |
<link rel="SHORTCUT ICON" href="{% static 'hdalab/img/favicon.ico' %}" /> |
| 131 | 13 |
<title>{% block title %}HdA Lab{% endblock %}</title> |
14 |
||
15 |
{% block css_import %} |
|
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
272
diff
changeset
|
16 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/common.css' %}" /> |
| 131 | 17 |
{% endblock %} |
18 |
||
19 |
{% block js_import %} |
|
|
288
0bb9c29cd41d
renkan first step : link, views and get put for json
cavaliet
parents:
280
diff
changeset
|
20 |
<script src="{% static 'hdalab/lib/jquery.min.js' %}"></script> |
| 131 | 21 |
{% endblock %} |
22 |
||
23 |
</head> |
|
24 |
<body> |
|
25 |
||
26 |
{% block header %} |
|
| 132 | 27 |
<div id="header"> |
| 131 | 28 |
<ul id="nav"> |
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
272
diff
changeset
|
29 |
<li><a class="{% block home_actif %}{% endblock %}" href="{% url 'home' %}">Accueil</a></li> |
| 252 | 30 |
<li>—</li> |
31 |
<li>Navigation par :</li> |
|
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
272
diff
changeset
|
32 |
<li><a class="{% block facettes_actif %}{% endblock %}" href="{% url 'facettes' %}">Facettes</a></li> |
|
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
272
diff
changeset
|
33 |
<li><a class="{% block categories_actif %}{% endblock %}" href="{% url 'categories' %}">Catégories de Wikipedia</a></li> |
|
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
272
diff
changeset
|
34 |
<li><a class="{% block thesaurus_actif %}{% endblock %}" href="{% url 'thesaurus' %}">Thésaurus</a></li> |
| 293 | 35 |
<li>—</li> |
36 |
{% if user.is_authenticated %} |
|
37 |
<li><a href="{% url 'profile_home' %}">{{ user.username }}</a></li> |
|
38 |
<li><a href="{% url 'logout' %}?next={% url 'home' %}">{% trans "Log out" %}</a></li> |
|
39 |
{% else %} |
|
40 |
<li class="hello-user"><a href="{% url 'login' %}">{% trans "Log in" %}</a></li> |
|
41 |
{% endif %} |
|
| 131 | 42 |
</ul> |
| 207 | 43 |
<h1> |
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
272
diff
changeset
|
44 |
<a href="{% url 'home' %}">HdA Lab</a> |
| 207 | 45 |
</h1> |
| 132 | 46 |
</div> |
47 |
<div id="container"> |
|
| 131 | 48 |
{% endblock %} |
49 |
||
50 |
{% block main_content %} |
|
51 |
||
52 |
{% endblock %} |
|
53 |
||
54 |
{% block footer %} |
|
55 |
</div> |
|
| 132 | 56 |
<div id="footer"> |
57 |
<ul id="footer-contents"> |
|
58 |
<li> |
|
59 |
<p>Une expérimentation de l'Institut de Recherche et d'Innovation et du Ministère de la Culture et de la Communication</p> |
|
60 |
</li> |
|
61 |
<li> |
|
62 |
<a href="http://culture.gouv.fr/" target="_blank"> |
|
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
272
diff
changeset
|
63 |
<img src="{% static 'hdalab/img/logo_mcc_blanc.png' %}" /> |
| 132 | 64 |
</a> |
65 |
</li> |
|
66 |
<li> |
|
67 |
<a href="http://www.iri-research.org/" target="_blank"> |
|
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
272
diff
changeset
|
68 |
<img src="{% static 'hdalab/img/logo_iri_blanc.png' %}" /> |
| 132 | 69 |
</a> |
70 |
</li> |
|
71 |
</ul> |
|
72 |
</div> |
|
| 131 | 73 |
{% endblock %} |
| 170 | 74 |
{% analytics %} |
| 131 | 75 |
</body> |
76 |
</html> |