src/hdalab/templates/base.html
author rougeronj
Thu, 11 Dec 2014 12:01:04 +0100
changeset 398 b7df96dd742f
parent 387 f52a0abff76b
child 399 44d627c3a9fb
permissions -rw-r--r--
Close ticket #49 - add links to django and renkan admin for authorized users. TODO : improve profile page

{% load analytics %}
{% load i18n %}
{% load static %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{LANGUAGE_CODE}}" lang="{{LANGUAGE_CODE}}">
    <head>
        <meta charset="utf-8" />
        <meta http-equiv="Content-type" content="text/html;charset=UTF-8" />        
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <meta http-equiv="content-language" content="{{LANGUAGE_CODE}}" />
        <link rel="SHORTCUT ICON" href="{% static 'hdalab/img/favicon.ico' %}" />        
        <title>{% block title %}HdA Lab{% endblock %}</title>

{% block css_import %}
        <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/common.css' %}" />
        <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/header.css' %}" />
        <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/footer.css' %}" />
{% endblock %}

{% block js_import %}
        <script src="{% static 'hdalab/lib/jquery.min.js' %}"></script>
{% endblock %}
    </head>
    <body>
{% block header %}
		<header id="header">
			
			<div class="top">
				<div id="logo">
					<div class="row">
						<h1><a href="#"><img src="{% static 'hdalab/img/logo-hda.png' %}" alt="HdA Lab"></a></h1>
					</div>
				</div>
				<nav>
					<div class="row">
						<ul id="menu">
							<li class="{% block home_actif %}{% endblock %}"><a href="{% url 'home'  %}">Accueil</a></li>
							<li class="{% block facettes_actif %}{% endblock %}"><a href="{% url 'facettes' %}">Facettes</a></li>
							<li class="{% block categories_actif %}{% endblock %}"><a href="{% url 'categories' %}">Catégories de Wikipedia</a></li>
							<li class="{% block thesaurus_actif %}{% endblock %}"><a href="{% url 'thesaurus' %}">Thésaurus</a></li>
							<li class="{% block renkans_actif %}{% endblock %}"><a href="{% url 'renkan_public_list' %}">Renkan</a></li>
							<li class="external"><a href="http://www.histoiredesarts.culture.fr/" target="_blank">Histoire des Arts</a></li>

						</ul>
						<ul id="menu" class="profile">
							{% if user.is_authenticated %}
	                			<li class="{% block profile_actif %}{% endblock %}"><a href="{% url 'profile_home' %}">{{ user.username }}</a></li>
	                			<li><a href="{% url 'logout' %}?next={% url 'home' %}">{% trans "Log out" %}</a></li>
	              			{% else %}
	                			<li class="{% block login_actif %}{% endblock %}"><a href="{% url 'login' %}">{% trans "Log in" %}</a></li>
	              			{% endif %}
						</ul>
					</div>
				</nav>
			</div>
			<div id="subhead">
				{% block subhead %}
				{% endblock %}
			</div>
		</header>
{% endblock %}

<main id="content" class="row">
	{% block main_content %}
	{% endblock %}
</main>

{% block footer %}
		<footer id="footer">
			<div class="nav">
				<div class="row">
					<ul>
						<li><a href="#">A Propos</a></li>
						<li><a href="#">Crédits</a></li>
						<li><a href="#">Mentions légales</a></li>
						<li><a href="#">Contact</a></li>
					</ul>
				</div>
			</div>
			<img src="{% static 'hdalab/img/footer.png' %}" alt="" style="display:block;margin:0 auto;">
		</footer>
{% endblock %}
{% analytics %}
    </body>
</html>