| author | rougeronj |
| Thu, 27 Nov 2014 11:51:36 +0100 | |
| changeset 374 | ad92df04d9ab |
| parent 329 | ea6268cf8c83 |
| child 387 | f52a0abff76b |
| 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' %}" /> |
| 374 | 17 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/head.css' %}" /> |
18 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/footer.css' %}" /> |
|
| 131 | 19 |
{% endblock %} |
20 |
||
21 |
{% block js_import %} |
|
|
288
0bb9c29cd41d
renkan first step : link, views and get put for json
cavaliet
parents:
280
diff
changeset
|
22 |
<script src="{% static 'hdalab/lib/jquery.min.js' %}"></script> |
| 131 | 23 |
{% endblock %} |
24 |
</head> |
|
25 |
<body> |
|
26 |
{% block header %} |
|
| 374 | 27 |
<div id="topnav"> |
28 |
<img src="{% static 'hdalab/img/topnav.jpg' %}" alt="" style="display:block;margin:0 auto;"> |
|
29 |
</div> |
|
30 |
<header id="header"> |
|
31 |
||
32 |
<div class="top"> |
|
33 |
<div id="logo"> |
|
34 |
<div class="row"> |
|
35 |
<h1><a href="#"><img src="{% static 'hdalab/img/logo-hda.png' %}" alt="HdA Lab"></a></h1> |
|
36 |
</div> |
|
37 |
</div> |
|
38 |
<nav> |
|
39 |
<div class="row"> |
|
40 |
<ul id="menu"> |
|
41 |
<li class="{% block home_actif %}{% endblock %}"><a href="{% url 'home' %}">Accueil</a></li> |
|
42 |
<li class="{% block facettes_actif %}{% endblock %}"><a href="{% url 'facettes' %}">Facettes</a></li> |
|
43 |
<li class="{% block categories_actif %}{% endblock %}"><a href="{% url 'categories' %}">Catégories de Wikipedia</a></li> |
|
44 |
<li class="{% block thesaurus_actif %}{% endblock %}"><a href="{% url 'thesaurus' %}">Thésaurus</a></li> |
|
45 |
<li class="{% block renkans_actif %}{% endblock %}"><a href="{% url 'renkan_public_list' %}">Renkan</a></li> |
|
46 |
||
47 |
</ul> |
|
48 |
<ul id="menu" class="profile"> |
|
49 |
{% if user.is_authenticated %} |
|
50 |
<li class="{% block profile_actif %}{% endblock %}"><a href="{% url 'profile_home' %}">{{ user.username }}</a></li> |
|
51 |
<li><a href="{% url 'logout' %}?next={% url 'home' %}">{% trans "Log out" %}</a></li> |
|
52 |
{% else %} |
|
53 |
<li class="hello-user"><a href="{% url 'login' %}">{% trans "Log in" %}</a></li> |
|
54 |
{% endif %} |
|
55 |
</ul> |
|
56 |
</div> |
|
57 |
</nav> |
|
58 |
</div> |
|
59 |
<div id="subhead"> |
|
60 |
{% block subhead %} |
|
61 |
{% endblock %} |
|
62 |
</div> |
|
63 |
</header> |
|
| 131 | 64 |
{% endblock %} |
65 |
||
| 374 | 66 |
<main id="content" class="row"> |
67 |
{% block main_content %} |
|
68 |
{% endblock %} |
|
69 |
</main> |
|
| 131 | 70 |
|
71 |
{% block footer %} |
|
| 374 | 72 |
<footer id="footer"> |
73 |
<div class="nav"> |
|
74 |
<div class="row"> |
|
75 |
<ul> |
|
76 |
<li><a href="#">Partenaires</a></li> |
|
77 |
<li><a href="#">Lettres infos</a></li> |
|
78 |
<li><a href="#">Data culture</a></li> |
|
79 |
<li><a href="#">Mentions légales</a></li> |
|
80 |
<li><a href="#">Accessibilité</a></li> |
|
81 |
<li><a href="#">Plan du site</a></li> |
|
82 |
<li><a href="#">Open search</a></li> |
|
83 |
</ul> |
|
84 |
</div> |
|
85 |
</div> |
|
86 |
<img src="{% static 'hdalab/img/footer.png' %}" alt="" style="display:block;margin:0 auto;"> |
|
87 |
</footer> |
|
| 131 | 88 |
{% endblock %} |
| 301 | 89 |
{% analytics %} |
| 131 | 90 |
</body> |
91 |
</html> |