aboutsummaryrefslogtreecommitdiff
path: root/Default page/templates/base.html
blob: f50bbeeea701acc33b20d011c1ef446b65f29cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
    {% block head %}
    <link rel="stylesheet" href="/main.css" />
		<title>{% block title_prefix %}{% endblock %}{{title}}</title>
		<link rel="icon" type="image/x-icon" href="icon.svg">
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
    {% endblock %}
</head>
<body>
	<div id="root-container">
		<a id="logo" href="/">
			<h1>{{ title }}</h1>
		</a>
		<hr>
		<br>
		{% block content %}
		{% endblock %}
	</div>
	<div id="footer">
		{% block footer %}
		{% endblock %}
	</div>
</body>
</html>