80 lines
No EOL
2.8 KiB
HTML
80 lines
No EOL
2.8 KiB
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/static/fonts/lack/stylesheet.css" />
|
|
<link rel="stylesheet" type="text/css" href="/static/fonts/fengardoneue/font.css" />
|
|
<link rel="stylesheet" type="text/css" href="/static/css/lesgv/faire-ma-page.css" />
|
|
<link rel="stylesheet" type="text/css" href="/static/css/bootstrap.min.css">
|
|
<link rel="stylesheet" type="text/css" href="/static/css/lesgv/burger.css" />
|
|
<link rel="stylesheet" type="text/css" href="/static/css/lesgv-colors.css" />
|
|
<link rel="stylesheet" type="text/css" href="/static/css/lesgv.css" />
|
|
<link rel="stylesheet" type="text/css" href="/css/lesgv/faire-ma-home-page.css" />
|
|
|
|
<title>{{template "title" .}}</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container mb-4">
|
|
<h1><a href="/">{{ template "title" .}}</a></h1>
|
|
<nav role="navigation">
|
|
<div id="menuToggle">
|
|
<!--
|
|
A fake / hidden checkbox is used as click reciever,
|
|
so you can use the :checked selector on it.
|
|
-->
|
|
<input type="checkbox" id="menu-checkbox" />
|
|
|
|
<!--
|
|
Some spans to act as a hamburger.
|
|
|
|
They are acting like a real hamburger,
|
|
not that McDonalds stuff.
|
|
-->
|
|
<div class="burger">
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
</div>
|
|
|
|
<!--
|
|
Too bad the menu has to be inside of the button
|
|
but hey, it's pure CSS magic.
|
|
-->
|
|
<ul id="menu">
|
|
<li><a href="/">Home</a>
|
|
<ul class="submenu">
|
|
<li><a href="/profile">Modifier mon profil</a></li>
|
|
<li><a href="/passwd">Modifier mon mot de passe</a></li>
|
|
<li><a href="/SOGo">Accéder à mes courriels, mon agenda et à mes contacts</a></li>
|
|
<li><a href="https://www.lesgrandsvoisins.com/resdigita">Accéder au numérique des Grands Voisins .com</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
|
|
<li><a href="/invite/new_account">Créer un nouveau compte</a>
|
|
<ul class="submenu">
|
|
<li><a href="/admin/activate">Activer des Utilisateur·ices</a></li>
|
|
<li><a href="/admin/users">Utilisateur·ices</a></li>
|
|
<li><a href="/admin/groups">Groupes</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="/logout">Se déconnecter</a></li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
<hr />
|
|
{{template "body" .}}
|
|
</div>
|
|
<script src="/static/javascript/jquery.slim.min.js"></script>
|
|
<script src="/static/javascript/bootstrap.bundle.min.js"></script>
|
|
<script src="/static/javascript/lesgv.js"></script>
|
|
<script src="/static/javascript/burger.js"></script>
|
|
<script src="/static/javascript/journuit.js"></script>
|
|
</body>
|
|
|
|
</html> |