aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 6fe776af37fa5ecce7e8b5f0e31b97551ebf1353 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
		<head>
			<meta charset="utf-8">
			<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>