2018-01-12 23:30:16 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2017-01-26 22:32:27 +00:00
|
|
|
<head>
|
2018-01-12 23:30:16 +00:00
|
|
|
<title>Rézoroulette Metzthernet</title>
|
|
|
|
<meta charset="utf-8"/>
|
2017-01-29 17:44:32 +00:00
|
|
|
<meta http-equiv="refresh" content="60">
|
2017-01-26 22:32:27 +00:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style_red.css') }}" />
|
2017-01-29 16:29:26 +00:00
|
|
|
<script type="text/javascript" src="{{ url_for('static', filename='javascript.js') }}"></script>
|
2017-01-30 08:07:37 +00:00
|
|
|
<script type="text/javascript" src="{{ url_for('static', filename='highcharts.js') }}"></script>
|
2017-01-30 01:31:28 +00:00
|
|
|
<script type="text/javascript" src="{{ url_for('static', filename='jquery-3.1.1.min.js') }}"></script>
|
2017-01-29 16:29:26 +00:00
|
|
|
<link rel="shortcut icon" type="image/x-icon"
|
2017-01-26 22:32:27 +00:00
|
|
|
href="{{ url_for('static', filename='favicon.ico') }}" />
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="body_bis">
|
2017-01-30 10:33:39 +00:00
|
|
|
<div id="banner">
|
|
|
|
</div>
|
|
|
|
|
2017-01-26 22:32:27 +00:00
|
|
|
<div id="content_container">
|
|
|
|
<div id="content">
|
|
|
|
{% with messages = get_flashed_messages() %}
|
|
|
|
{% if messages %}
|
|
|
|
<ul class=flashes>
|
|
|
|
{% for message in messages %}
|
|
|
|
<li>{{ message }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
2017-01-29 16:29:26 +00:00
|
|
|
{% endwith %}
|
2017-01-26 22:32:27 +00:00
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
2018-01-12 23:30:16 +00:00
|
|
|
<div id="footer">Contact technique : <a href="mailto:metzthernet@gmail.com">metzthernet@gmail.com</a></div>
|
2017-01-26 22:32:27 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|