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.
portail-citoyen2/portail_citoyen/templates/base_orleans.html

107 lines
3.3 KiB
HTML

{% load menu_tags cms_tags sekizai_tags i18n %}
<!DOCTYPE HTML>
<html lang="fr">
<head>
<meta charset="UTF-8"><!---->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Compte Citoyen Orléans :: {% page_attribute "page_title" %}</title>
<meta name="keywords" content="compte citoyen orleans" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content="Portail Citoyen Entr'ouvert -- Django CMS" />
<meta name="author" content="Entr'ouvert, borrowed from ARTIFICA" />
{% render_block "css" %}
{% render_block "js" %}
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}themes/orleans/css/all.css">
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}themes/orleans/css/local.css">
<!--[if lt IE 9]>
<script src="{{ STATIC_URL }}themes/orleans/js/html5shiv.js"></script>
<![endif]-->
{% block extra_scripts %}
{% endblock %}
</head>
<body class="home" role="document" {% block bodyargs %}{% endblock %}>
{% cms_toolbar %}
<!--[if lte IE 7]>
<p class="oldBrowser">Votre navigateur est trop ancien ! <a
href="http://browsehappy.com/" target="_blank">Effectuez une
mise à jour ou utilisez un navigateur plus récent.</a></p>
<![endif]-->
<noscript><div class="noscript">
<p>Merci d'activer javascript dans votre
navigateur afin de profiter<br />pleinement de
toutes les fontionnalités offertes par le
site.</p>
</div></noscript>
<div id="wrap">
<nav>
<ul>
<li class="skip"><a class="skiplink" href="/" accesskey="1" tabindex="1">Accueil du site</a></li>
<li class="skip"><a class="skiplink" href="#accesContent" accesskey="2" tabindex="2">Aller au contenu</a></li>
</ul>
</nav>
<div class="container">
<header class="header">
<hgroup>
<h1 class="logo" role="banner">
<a href="http://www.orleans.fr/" title="Site de la ville d'Orléans">
<img src="{{ STATIC_URL }}themes/orleans/img/logo.png" height="112" width="355" alt="Logo du site officiel de la ville d'Orléans" />
<span>Le site officiel de la mairie d'Orléans</span>
</a>
</h1>
<span class="slogan"><img src="{{ STATIC_URL }}themes/orleans/img/slogan.png" height="17" width="389" alt="Le site de la mairie d'Orléans" /></span>
</hgroup>
</header>
<div class="main overflow">
<div class="breadcrumbs">
<p>Vous êtes ici :</p>
<ul>
<li><a href="/">Compte Citoyen</a></li>
<li class="separ">&nbsp;/&nbsp;</li>
{% block breadcrumbs %}{% endblock %}
</ul>
</div>
<section class="content" id="accesContent" role="main">
<article>
{% if messages %}
<div class="wrapSpecial">
<div class="rteContent">
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
</div>
</div>
{% endif %}
{% block content %}{% endblock %}
</article>
</section>
<aside class="sidebarRight">
{% block sidebar %}{% endblock %}
</aside>
</div>
</div>
<footer class="footer">
{% block footer %}{% endblock %}
</footer>
</div>
</body>
</html>