79 lines
3.0 KiB
HTML
79 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang='zxx'>
|
|
<head>
|
|
<title>We Make THSF - {% block title %}Accueil{% endblock %}</title>
|
|
<meta name="viewport" content="initial-scale=1.0" />
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<link rel="stylesheet" type="text/css" href="/static/styles/colors.css" />
|
|
<link rel="stylesheet" type="text/css" href="/static/styles/fonts.css" />
|
|
<link rel="stylesheet" type="text/css" href="/static/styles/tetawebapp.css" />
|
|
<link rel="stylesheet" type="text/css" href="/static/styles/participate.css" />
|
|
<link rel="icon" type="image/png" href="/static/images/favicon.png" />
|
|
<script src="/static/scripts/tetawebapp.js"></script>
|
|
<script src="/static/scripts/participate.js"></script>
|
|
</head>
|
|
{% block bodyheader %}
|
|
<body>
|
|
{% endblock %}
|
|
<header>{% block banner %}We Make THSF{% endblock %}</header>
|
|
<div class='content'>
|
|
{% block nav %}
|
|
<nav class='vertical'>
|
|
{% block menu %}
|
|
{% for item in menu %}
|
|
{% for key in item[1] %}
|
|
{% if item[2] == 1 %}
|
|
<a class='selected' href='{{ key }}'>{{ item[0] }}</a>
|
|
{% else %}
|
|
<a href='{{ key }}'>{{ item[0] }}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
</nav>
|
|
{% endblock%}
|
|
<main id='main'>
|
|
{% if navbar %}
|
|
<div class='navbar_container'>
|
|
<ul class='horizontal'>
|
|
{% for item in navbar %}
|
|
{% set selected = ['', 'selected'] %}
|
|
{% set last = ['right_border', 'last'] %}
|
|
{% for url in item[1] %}
|
|
<li><a class='{{ last[item[3]] }} {{ selected[item[2]] }}' href='{{ url }}'>{{ item[0] }}</a></li>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
{% if message and message != '' %}
|
|
<pre>{{ message }}</pre>
|
|
{% endif %}
|
|
{% block main %}
|
|
<article class='right'>
|
|
<h3>We Make THSF</h3>
|
|
<p>Bonjour {{ login }},</p>
|
|
<p>
|
|
Comme chaque année le <a href='https://www.thsf.net>'>Toulouse Hacker Space Factory</a> aura lieu à
|
|
<a href='http://mixart-myrys.org'>Mix'Art Myrys</a>.
|
|
</p>
|
|
<p>
|
|
Ce festival ne pourrait pas avoir lieu sans votre implication et cette année encore votre aide est la bienvenue et nous
|
|
est précieuse.
|
|
</p>
|
|
<p>
|
|
Une fois vos <a href='/account'>informations personnelles</a> duement renseignées vous pourrez <a href='/staffsheet'>sélectionner les postes et les créneaux horaires</a> pendant lesquels vous souhaitez vous rendre disponible.
|
|
</p>
|
|
<p>
|
|
Le <a href='https://www.tetalab.org'>Tetal@b</a> et l'ensemble de l'équipe d'organisation du THSF vous remercie pour votre aide.
|
|
</p>
|
|
</article>
|
|
{% endblock %}
|
|
</main>
|
|
</div>
|
|
{% block footer %}
|
|
<footer>© - Tetalab - Le hacker space Toulousaing' putaing' cong' -</footer>
|
|
{% endblock%}
|
|
</body>
|
|
</html>
|