summaryrefslogtreecommitdiffstats
path: root/_layouts/default.html
blob: e85e73171c21cc4f8455171d4e3e3e801a36193a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang=sl>
	<head>
		<meta charset=UTF-8 />
		<title>
			{{ page.title }} :: {{ site.name }}
		</title>
		<link rel=stylesheet href=/assets/css/styles.css />
		<link rel=alternate hreflang=sl type=application/rss+xml href=/feed.xml />
		<meta name=viewport content="width=device-width,initial-scale=1.0" />
		<link rel="shortcut icon" type=image/x-icon href=/favicon.ico />
		{% feed_meta %}
		{% seo %}
		{% if jekyll.environment == "production" %}
			<!-- this comment generates if JEKYLL_ENV=production -->
		{% endif %}
	</head>
	<body>
		{% include navigation.html %}
		{{ content }}
		{% include footer.html %}
		<script src=/assets/js/main.js ></script>
	</body>
</html>