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
2018-04-03 11:06:37 +02:00

25 lines
976 B
HTML

<!doctype html>
<head>
<meta name="robots" content="noindex, nofollow">
<title>{% block title %}Stackexchange Simulator{% endblock %}</title>
{% 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>
<div class="container">
{% for message in get_flashed_messages() %}
<div class="flash">{{ message }}</div>
{% endfor %}
{% block body %}{% endblock %}
<footer>
<div><a href="https://lw1.at/i">Imprint and Privacy Policy</a></div>
<div><a href="https://lw1.at/" target="_blank">About me and other projects</a></div>
</footer>
</div>
<script src="{{ url_for('static', filename='js/app.js') }}"></script>
<script src="{{ url_for('static', filename='js/awesomplete.min.js') }}"></script>
</body>