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.
rouen-publik-theme/templates/variants/rouen/theme.html

126 lines
4.3 KiB
HTML

<!DOCTYPE html>
{% load i18n static %}
<html {% if LANGUAGE_CODE %}lang="{{ LANGUAGE_CODE }}"{% endif %} {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
<head>
<meta charset="UTF-8"><!-- 🔥 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% firstof global_title "Compte Citoyen" %} {% block title %}{% endblock %}</title>
{% if meta_robots %}
<meta name="robots" content="{{ meta_robots }}" />
{% elif environment_label %}
<meta name="robots" content="noindex, nofollow, noarchive, nosnippet, notranslate, noimageindex" />
{% endif %}
{% if meta_description %}
<meta name="description" content="{{ meta_description }}" />
{% endif %}
{% if favicon %}
<link rel="shortcut icon" href="{{site_base}}{% static "" %}{{favicon}}" />
{% endif %}
{% if theme_color %}
<meta name="theme-color" content="{{theme_color}}">
<meta name="msapplication-navbutton-color" content="{{theme_color}}">
{% endif %}
{% if pwa_display == "standalone" or pwa_display == "fullscreen" %}
<link rel="manifest" href="{{site_base}}/manifest.json">
{% endif %}
{% block extra_top_head %}
{% endblock %}
{{ media }}
{% if css_variant %}
<link rel="stylesheet"
type="text/css"
href="{{site_base}}{% static "" %}{{css_variant}}/style.css?{{statics_hash}}">
{% else %}
<link rel="stylesheet"
type="text/css"
href="{{site_base}}{% static "style.css" %}?{{statics_hash}}">
{% endif %}
{% block extra_css %}{% endblock %}
{% block extra_scripts %}{% endblock %}
</head>
<body {% block bodyargs %}class="{% block bodyclasses %}{% endblock %}"
{% block bodyattrs %}{% endblock %}{% endblock %}>
<div id="nav-skip">
<div>
<a href="#main-content">Aller au contenu</a>
<a href="#nav">Aller au menu</a>
</div>
</div>
<div id="page" {% block page-args %}{% endblock %}>
<header>
<div id="header-wrapper" >
{% block header-pre %}{% endblock %}
<div id="header">
{% block header-top %}{% endblock %}
<div id="top">
{% block header-title %}
<h1 id="logo"><a accesskey="1" href="{{ portal_url }}">{{ site_title }}</a></h1>
{% endblock %}
{% if include_top_links != False %}
<div id="toplinks">
{% block user-info %}
{% if user.is_authenticated %}
<span class="logged-in">
<span class="connected-user">{{user.first_name}} {{user.last_name}}</span>
<a class="logout" href="{% url 'auth_logout' %}">D&eacute;connexion</a>
</span>
{% endif %}
{% endblock %}
</div> <!-- toplinks -->
{% endif %}
</div>
{% block header-bottom %}{% endblock %}
</div> <!-- header -->
{% block header-post %}{% endblock %}
</div> <!-- header-wrapper -->
</header>
{% block before-main-content %}{% endblock %}
<div id="main-content-wrapper">
<div id="main-content">
{% block messages %}
{% if messages %}
<div id="messages" class="messages-login">
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endblock %}
{% block content-pre %}{% endblock %}
<div id="content" class="gru-content large">
{% block content-top %}{% endblock %}
{% block content %}{% endblock %}
{% block content-bottom %}{% endblock %}
</div> <!-- #content -->
{% block content-post %}{% endblock %}
</div> <!-- #main-content -->
</div> <!-- #main-content-wrapper -->
<footer>
{% block footer-top %}{% endblock %}
<div id="footer-wrapper">
<div id="footer">
{% block footer %}
<p id="legal">Copyright © 2005-2016 Entr'ouvert</p>
{% endblock %}
</div>
</div>
{% block footer-bottom %}{% endblock %}
</footer>
</div> <!-- #page -->
{% if environment_label %}<span id="environment-label">{{ environment_label }}</span>{% endif %}
<a style="display: none" href="#" accesskey="t">Retour en haut de page</a>
{% include "includes/tracking.html" %}
{% block body-bottom %}{% endblock %}
<script src="{{site_base}}{% static "" %}{{css_variant}}/js/collapse.js" %}?{{statics_hash}}"></script>
</body>
</html>