1
0
Fork 0
mirror of https://github.com/Findus23/se-simulator.git synced 2024-09-19 15:53:45 +02:00
se-simulator/templates/base.html

21 lines
695 B
HTML
Raw Normal View History

2018-03-22 22:52:14 +01:00
<!doctype html>
2018-03-25 11:28:37 +02:00
<head>
2018-03-28 17:55:16 +02:00
<title>Stackexchange Simulator</title>
2018-03-25 11:28:37 +02:00
{% if config['DEBUG'] %}
<link href="{{ url_for('static', filename='css/style.scss.css') }}" rel="stylesheet" type="text/css">
{% else %}
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet" type="text/css">
{% endif %}
</head>
<body>
2018-03-22 22:52:14 +01:00
<div class="container">
{% for message in get_flashed_messages() %}
<div class="flash">{{ message }}</div>
{% endfor %}
{% block body %}{% endblock %}
</div>
2018-03-25 11:28:37 +02:00
<script src="{{ url_for('static', filename='js/app.js') }}"></script>
<script src="{{ url_for('static', filename='js/awesomplete.min.js') }}"></script>
2018-03-25 11:28:37 +02:00
</body>