31 changed files with 179 additions and 185 deletions
@ -1,5 +1,2 @@ |
|||
Luc Absil |
|||
Matthieu Michelet |
|||
Clara Husson |
|||
Melchior Garapin |
|||
Benjamin Criton |
|||
|
|||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.4 KiB |
@ -1,38 +1,38 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
|
|||
<head> |
|||
<title>Rézoroulette Metzthernet</title> |
|||
<meta charset="utf-8" /> |
|||
<meta name="viewport" content="width=device-width,initial-scale=1"> |
|||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" /> |
|||
<script type="text/javascript" src="{{ url_for('static', filename='javascript.js') }}"></script> |
|||
<script type="text/javascript" src="{{ url_for('static', filename='highcharts.js') }}"></script> |
|||
<script type="text/javascript" src="{{ url_for('static', filename='Chart.min.js') }}"></script> |
|||
<script type="text/javascript" src="{{ url_for('static', filename='jquery-3.1.1.min.js') }}"></script> |
|||
<link rel="shortcut icon" type="image/x-icon" |
|||
href="{{ url_for('static', filename='favicon.ico') }}" /> |
|||
<link rel="shortcut icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}" /> |
|||
</head> |
|||
|
|||
<body> |
|||
<div id="body_bis"> |
|||
|
|||
<a href="/"> |
|||
<div id="banner"> |
|||
</div> |
|||
<img id="banner" src="{{ url_for('static', filename='img/banner.svg') }}"> |
|||
</a> |
|||
|
|||
<div id="content_container"> |
|||
<div id="content"> |
|||
{% with messages = get_flashed_messages() %} |
|||
{% if messages %} |
|||
<div id="card"> |
|||
<div id="content" class="center"> |
|||
{% with messages = get_flashed_messages() %} {% if messages %} |
|||
<ul class=flashes> |
|||
{% for message in messages %} |
|||
<li>{{ message }}</li> |
|||
{% endfor %} |
|||
</ul> |
|||
{% endif %} |
|||
{% endwith %} |
|||
{% block content %}{% endblock %} |
|||
{% endif %} {% endwith %} {% block content %}{% endblock %} |
|||
</div> |
|||
<div id="footer"> |
|||
<a href="mailto:metzthernet@gmail.com">metzthernet@gmail.com</a> |
|||
</div> |
|||
<div id="footer">Contact technique : <a href="mailto:metzthernet@gmail.com">metzthernet@gmail.com</a></div> |
|||
</div> |
|||
</div> |
|||
</body> |
|||
|
|||
</html> |
|||
@ -0,0 +1 @@ |
|||
This is only a test. |
|||
Loading…
Reference in new issue