56 lines
1.6 KiB
HTML
56 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<title>
|
|
{{ .Site.Title }}{{ $url := urls.Parse .Page.Permalink }}{{ $url.Path }}
|
|
</title>
|
|
{{ with .Site.Params.description }}
|
|
<meta name="description" content="{{ . }}" />
|
|
{{ end }}
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="robots" content="all,follow" />
|
|
<meta name="googlebot" content="index,follow,snippet,archive" />
|
|
|
|
<link rel="stylesheet" href="{{ "css/animate.min.css" | absURL }}" />
|
|
<link rel="stylesheet" href="{{ "css/terminal.min.css" | absURL }}" />
|
|
<link rel="stylesheet" href="{{ "css/huell.css" | absURL }}" />
|
|
|
|
<script src="{{ "js/masonry.min.js" | absURL }}" async></script>
|
|
|
|
{{ `
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
` | safeHTML
|
|
}}
|
|
|
|
{{- partial "favicon.html" . -}}
|
|
|
|
{{ with .OutputFormats.Get "RSS" }}
|
|
{{ printf `
|
|
<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML
|
|
}}
|
|
{{ end }}
|
|
|
|
{{- partial "opengraph.html" . -}}
|
|
{{- partial "twitter.html" . -}}
|
|
</head>
|
|
|
|
<body class="terminal">
|
|
{{- partial "header.html" . -}}
|
|
|
|
|
|
<div class="container {{ .Site.Params.animateStyle }}">
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
{{ partial "footer.html" . }}
|
|
</div>
|
|
</body>
|
|
</html>
|