2017-10-25 09:35:55 +01:00
|
|
|
<!DOCTYPE HTML>
|
2018-01-24 15:09:06 +00:00
|
|
|
<html lang="en">
|
2017-11-11 22:00:53 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="Content-Language" content="{{ .Site.Language.Lang }}" />
|
|
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
|
|
|
|
<link rel="alternate" type="application/rss+xml" href="{{ .Site.RSSLink }}" />
|
|
|
|
<meta name="superfish" content="nofish" />
|
|
|
|
<meta name="application-name" content="{{ .Site.Title }}" />
|
2018-01-06 16:27:25 +00:00
|
|
|
<link rel="icon" type="image/png" href='{{ absURL "/img/logo-transparent.png" }}'/>
|
|
|
|
<link rel="stylesheet" href='{{ absURL "/css/style.css" }}' />
|
2017-10-25 22:09:25 +01:00
|
|
|
|
2017-12-27 22:41:47 +00:00
|
|
|
<title>{{ partial "title-item.html" (dict "page" . "current" .)}}{{ .Site.Title }}</title>
|
2017-11-11 21:53:54 +00:00
|
|
|
|
2017-11-11 22:00:53 +00:00
|
|
|
{{ partial "metadata.html" . }}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ partial "navbar.html" . }}
|
2017-10-25 09:35:55 +01:00
|
|
|
|
2017-11-11 22:00:53 +00:00
|
|
|
{{ block "main" . }}{{ end }}
|
2017-10-25 09:35:55 +01:00
|
|
|
|
2017-11-11 22:00:53 +00:00
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
|
2018-01-06 16:27:25 +00:00
|
|
|
<script src='{{ absURL "/js/app.js" }}'></script>
|
2017-11-11 22:00:53 +00:00
|
|
|
</body>
|
2017-10-25 09:35:55 +01:00
|
|
|
</html>
|
|
|
|
|