thead.html - andersdamsgaard.com - my photography webpage | |
git clone git://src.adamsgaard.dk/andersdamsgaard.com | |
Log | |
Files | |
Refs | |
Submodules | |
README | |
LICENSE | |
--- | |
thead.html (1851B) | |
--- | |
1 <head> | |
2 <meta charset="UTF-8"> | |
3 <meta name="viewport" content="width=device-width, initi… | |
4 {{- if eq .RelPermalink "/" }} | |
5 <meta name="description" content="{{ .Site.Param… | |
6 {{- else if .Description }} | |
7 <meta name="description" content="{{ .Descriptio… | |
8 {{- end }} | |
9 | |
10 <title> | |
11 {{- if eq .RelPermalink "/" }} | |
12 {{ .Site.Title }} | |
13 {{- else }} | |
14 {{ .Title }} · {{ .Site.Title }} | |
15 {{- end }} | |
16 </title> | |
17 | |
18 <script type="text/javascript"> | |
19 if (window.location.href.indexOf("andersdamsgaar… | |
20 url=window.location.href; | |
21 url=url.replace("andersdamsgaard.dk","an… | |
22 window.location.replace(url); | |
23 } | |
24 </script> | |
25 | |
26 <!-- CSS --> | |
27 {{- $inServerMode := .Site.IsServer }} | |
28 {{- $cssTarget := "css/style.css" }} | |
29 {{- $cssOptions := cond ($inServerMode) (… | |
30 {{- $style := resources.Get "scss… | |
31 <link rel="stylesheet" href="{{ $style.RelPermalink }}"> | |
32 <link rel="stylesheet" href="https://fonts.googleapis.co… | |
33 {{- $inServerMode := .Site.IsServer }} | |
34 {{- $style := resources.Get "css/… | |
35 <link rel="stylesheet" href="{{ $style.RelPermalink }}"> | |
36 | |
37 <!-- Favicon --> | |
38 <link rel="icon" type="image/png" sizes="32x32" href="{{… | |
39 <link rel="icon" type="image/png" sizes="16x16" href="{{… | |
40 <link rel="apple-touch-icon" sizes="180x180" href="{{ .S… | |
41 | |
42 <!-- RSS --> | |
43 <link href="{{ with .OutputFormats.Get "RSS" }}{{ .RelPe… | |
44 </head> | |
45 |