aboutsummaryrefslogtreecommitdiffstats
path: root/_layouts/default.html
blob: 5196216d77022f3e516835da9841fe4584f88f88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<html>
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title>{{ page.title }} - {{ site.title }}</title>
		<link rel="stylesheet" href="/assets/css/style.css">
		<link rel="icon" href="assets/img/favicon.ico" type="image/x-icon">
	</head>
	<body>
		{% include navigation.html %}

		{{ content }}

		{% include footer.html %}
	</body>
</html>