2018-01-12 23:30:16 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2017-01-29 23:58:56 +00:00
|
|
|
<head>
|
2018-01-12 23:30:16 +00:00
|
|
|
<title>Rézoroulette</title>
|
|
|
|
<meta charset="utf-8" />
|
2017-01-29 23:58:56 +00:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" />
|
|
|
|
<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 00:53:50 +00:00
|
|
|
<script type="text/javascript" src="{{ url_for('static', filename='jquery-3.1.1.min.js') }}"></script>
|
2017-01-29 23:58:56 +00:00
|
|
|
<link rel="shortcut icon" type="image/x-icon"
|
|
|
|
href="{{ url_for('static', filename='favicon.ico') }}" />
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="body_bis">
|
|
|
|
|
|
|
|
<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 %}
|
|
|
|
{% endwith %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|