This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
cud-themes/idp/base.html

75 lines
2.0 KiB
HTML

<!DOCTYPE html>
{% load i18n staticfiles %}
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="content-language" content="{{ LANGUAGE_CODE }}" />
<title>{% block title %}Authentic{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{% static "authentic2/css/style.css" %}">
{% block extra_scripts %}
{% endblock %}
</head>
<body {% block bodyargs %}{% endblock %}>
<div id="page">
<div id="header">
<div id="top">
<div id="logo">
</div>
<div class="region-header">
<div id="toplinks">
<span class="logged-in">
{% if user.is_authenticated %}
<p class="user fullname">
{% blocktrans with full_name=user.get_full_name %}
Bienvenue {{ full_name }}
{% endblocktrans %}
</p>
<a class="logout" href="{% url 'auth_logout' %}">{% trans "Déconnexion" %}</a>
{% endif %}
</span>
</div>
</div>
</div>
</div> <!-- header -->
<div id="main-content-wrapper">
<div id="single-title">
{% block breadcumb %}
<ul>
<li>
<a href="/">accueil</a>
</li>
</ul>
{% endblock %}
</div>
{% block menu %}
{% endblock %}
<div id="main-content">
<div id="content">
{% block content %}
{% endblock %}
</div> <!-- #content -->
</div> <!-- #main-content -->
</div> <!-- #main-content-wrapper -->
<div id="bottom-content">
{% block bottom-content %}
{% endblock %}
</div>
</div>
<div id="footer">
<p id="faq">
Mentions légales - Crédits - FAQ
</p>
<p id="legal">© Copyright Dunkerque Grand Littoral 2013</p>
<ul id="footer-menu">
</ul>
</div>
</div>
</body>
</html>