blob: 81d9740d463fc8049d4295605de7a04d328800f8 (
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
25
26
27
28
29
30
31
32
|
<!DOCTYPE html>
<html lang=sl>
<head>
<meta charset=UTF-8 />
<title>
{% assign htmltitle = page.title | append: "::" | append: site.name %}
{{ htmltitle }}
</title>
<!-- <link rel=stylesheet href=/assets/css/styles.css /> -->
{% capture mainscss %}
{% include main.scss %}
{% endcapture %}
<style>{{ mainscss | scssify }}</style>
<link rel=alternate hreflang=sl type=application/rss+xml href=/feed.xml />
<meta name=viewport content="width=device-width,initial-scale=1.0,shrink-to-fit=no" />
<link rel="shortcut icon" type=image/x-icon href=/favicon.ico />
{% capture canonicalurl %}{% if page.url =='/' %}{{ site.url }}{% else %}{{ page.url | absolute_url }}{% endif %}{% endcapture %}
{% 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> -->
<script>{% include main.js %}</script>
{% include analitika.html %}
</body>
</html>
|