Commit | Line | Data |
---|---|---|
fcda8bb5 | 1 | {% load sep staticfiles %} |
31249cf3 | 2 | {% load url from future %} |
d15017b2 CR |
3 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
4 | <html xmlns="http://www.w3.org/1999/xhtml"> | |
5 | <head> | |
6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
7 | <title>Savoirs en partage - Agence universitaire de la Francophonie</title> | |
31249cf3 | 8 | <link rel="icon" type="image/png" href="{% static "img/favicon.ico" %}" /> |
31249cf3 EMS |
9 | <link href="{% static "css/global.css" %}" rel="stylesheet" type="text/css" /> |
10 | <link rel="stylesheet" href="{% static "css/jquery-ui/jquery-ui.css" %}" type="text/css" /> | |
11 | <link rel="stylesheet" href="{% static "css/jquery.timepicker.css" %}" type="text/css" /> | |
a15ea03d | 12 | <!--[if lt IE 7]> |
31249cf3 | 13 | <link href="{% static "css/ie6.css" %}" rel="stylesheet" type="text/css" media="screen" /> |
a15ea03d EMS |
14 | <![endif]--> |
15 | {% block extra-style %}{% endblock %} | |
16 | ||
31249cf3 EMS |
17 | <script type="text/javascript" src="{% static "js/jquery.js" %}"></script> |
18 | <script type="text/javascript" src="{% static "js/jquery-ui.js" %}"></script> | |
19 | <script type="text/javascript" src="{% static "js/jquery.ui.datepicker-fr.js" %}"></script> | |
20 | <script type="text/javascript" src="{% static "js/jquery.timepicker.js" %}"></script> | |
21 | <script type="text/javascript" src="{% static "js/pagination.js" %}"></script> | |
22 | <script type="text/javascript" src="{% static "js/sep.js" %}"></script> | |
73309469 | 23 | {% block extra-script %}{% endblock %} |
24 | ||
d15017b2 | 25 | <!--[if lt IE 7]> |
31249cf3 | 26 | <script src="{% static "js/DD_belatedPNG.js" %}"></script> |
d15017b2 | 27 | <script> |
cf4091c8 | 28 | DD_belatedPNG.fix('.top, .bottom, #col-droite, #contenu'); |
d15017b2 CR |
29 | </script> |
30 | <![endif]--> | |
fd243ee6 EMS |
31 | |
32 | <!-- Google Analytics --> | |
33 | <script type="text/javascript"> | |
34 | var _gaq = _gaq || []; | |
35 | _gaq.push(['_setAccount', 'UA-12691855-1']); | |
36 | _gaq.push(['_trackPageview']); | |
37 | ||
38 | (function() { | |
39 | var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | |
40 | ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | |
41 | var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | |
42 | })(); | |
a15ea03d | 43 | </script> |
d15017b2 CR |
44 | </head> |
45 | ||
46 | <body> | |
47 | <div id="fond"> | |
cf4091c8 EMS |
48 | <div id="enrobage"> |
49 | <div id="nav-gauche"> | |
50 | <div> | |
31249cf3 EMS |
51 | <a href="{% url "savoirs.views.index" %}">Accueil</a> | |
52 | <a href="{% url "chercheurs.views.index" %}">Répertoire</a> | | |
53 | <a href="{% url "savoirs.views.ressource_index" %}">Ressources</a> | | |
54 | <a href="{% url "actualites" %}">Actualités</a> | | |
55 | <a href="{% url "appels" %}">Appels d'offres</a> | | |
56 | <a href="{% url "savoirs.views.evenement_index" %}">Agenda</a> | | |
57 | <a href="{% url "sitotheque.views.index" %}">Sites</a> | |
cf4091c8 | 58 | </div> |
8432d16d | 59 | </div> |
cf4091c8 EMS |
60 | <div id="nav-droite"> |
61 | <div> | |
31249cf3 EMS |
62 | <a href="{% url "a-propos" %}">À propos</a> | |
63 | <a href="{% url "aide" %}">Aide</a> | | |
64 | <a href="{% url "contact" %}">Contact</a> | | |
65 | <a href="{% url "legal" %}">Légal</a> | | |
cf4091c8 | 66 | {% if user.is_authenticated %} |
31249cf3 | 67 | <a href="{% url "chercheurs-logout" %}">Déconnexion</a> |
cf4091c8 | 68 | {% else %} |
31249cf3 | 69 | <a href="{% url "chercheurs-login" %}">Connexion</a> |
cf4091c8 EMS |
70 | {% endif %} |
71 | </div> | |
609b1d41 | 72 | </div> |
cf4091c8 EMS |
73 | <div id="entete"> |
74 | <a id="logo" href="http://www.auf.org" | |
31249cf3 | 75 | ><img src="{% static "img/logo-agence-universitaire-de-la-francophonie.gif" %}" |
cf4091c8 | 76 | alt="Agence universitaire de la Francophonie" /></a> |
a3a00ff9 | 77 | <h1>Savoirs en partage</h1> |
cf4091c8 EMS |
78 | Le portail des ressources scientifiques<br />et pédagogiques de l'AUF |
79 | <form action="{% sep_url savoirs.views.recherche %}" method="get"> | |
80 | <label for="q">Recherche <em>dans toutes les rubriques</em></label> | |
81 | <input name="q" id="recherche" type="text" value="{{ q|default:"" }}" /> | |
82 | <button title="Lancer la recherche" type="submit"> </button> | |
83 | </form> | |
d15017b2 CR |
84 | </div> |
85 | ||
8baa2a56 | 86 | <div id="boite-principale"> |
31249cf3 | 87 | <img src="{% static "img/contenu-bkg-top.png" %}" width="744" height="10" class="top-border" /> |
8baa2a56 EMS |
88 | {% if flash.message %} |
89 | <div id="flash-message">{{ flash.message }}</div> | |
90 | {% endif %} | |
91 | <div id="contenu" class="clearfix"> | |
d15017b2 CR |
92 | {% block contenu %} |
93 | {% endblock %} | |
94 | </div> | |
31249cf3 | 95 | <img src="{% static "img/contenu-bkg-bottom.png" %}" width="744" height="10" class="bottom-border" /> |
d15017b2 CR |
96 | </div> |
97 | ||
cf4091c8 EMS |
98 | <div id="regions_disciplines"> |
99 | <div> | |
3b828312 | 100 | {% block sep_menu_droite %}{% sep_menu discipline_active region_active %}{% endblock %} |
cf4091c8 EMS |
101 | </div> |
102 | </div> | |
d15017b2 CR |
103 | </div> |
104 | </div> | |
105 | </body> | |
106 | </html> |