blob: a909acaadfa7b519bf5bb60064f6d21f25a5d1f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %} {% endblock %}</title>
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css' ) }}">
</head>
<body>
<div class="container">
{% block content %} {% endblock %}
</div>
<footer>
{% block footer %}
{% endblock %}
</footer>
</body>
</html>
|