participer.thsf.net/templates/index.html

79 lines
3.0 KiB
HTML
Raw Permalink Normal View History

2018-02-26 10:41:52 +01:00
<!DOCTYPE html>
<html lang='zxx'>
<head>
2018-02-26 19:53:06 +01:00
<title>We Make THSF - {% block title %}Accueil{% endblock %}</title>
2018-02-26 10:41:52 +01:00
<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" />
2018-02-26 19:53:06 +01:00
<link rel="stylesheet" type="text/css" href="/static/styles/participate.css" />
2018-02-26 10:41:52 +01:00
<link rel="icon" type="image/png" href="/static/images/favicon.png" />
<script src="/static/scripts/tetawebapp.js"></script>
2018-02-26 19:53:06 +01:00
<script src="/static/scripts/participate.js"></script>
2018-02-26 10:41:52 +01:00
</head>
{% block bodyheader %}
<body>
{% endblock %}
2018-02-26 19:53:06 +01:00
<header>{% block banner %}We Make THSF{% endblock %}</header>
2018-02-26 10:41:52 +01:00
<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%}
2018-03-05 22:12:02 +01:00
<main id='main'>
2018-02-26 10:41:52 +01:00
{% 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 %}
2018-02-27 19:51:43 +01:00
{% if message and message != '' %}
<pre>{{ message }}</pre>
{% endif %}
2018-02-26 10:41:52 +01:00
{% block main %}
<article class='right'>
2018-02-26 19:53:06 +01:00
<h3>We Make THSF</h3>
2018-02-27 19:51:43 +01:00
<p>Bonjour {{ login }},</p>
2018-02-26 10:41:52 +01:00
<p>
2018-04-14 14:36:25 +02:00
Comme chaque année le <a href='https://www.thsf.net'>Toulouse Hacker Space Factory</a> aura lieu à
2018-02-26 19:53:06 +01:00
<a href='http://mixart-myrys.org'>Mix'Art Myrys</a>.
2018-02-26 10:41:52 +01:00
</p>
<p>
2018-02-26 19:53:06 +01:00
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.
2018-02-26 10:41:52 +01:00
</p>
<p>
2018-03-05 22:12:02 +01:00
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.
2018-02-26 10:41:52 +01:00
</p>
</article>
{% endblock %}
</main>
</div>
{% block footer %}
<footer>© - Tetalab - Le hacker space Toulousaing' putaing' cong' -</footer>
{% endblock%}
</body>
</html>