head.html (1237B)
1 <meta charset="utf-8"> 2 <meta name="viewport" content="width=device-width, initial-scale=1"> 3 <title> 4 {{- block "title" . }} 5 {{- if .IsPage }} 6 {{- .Title }} - {{ .Site.Title }} 7 {{- else }} 8 {{- default .Site.Title .Title }} 9 {{- end }} 10 {{- end -}} 11 </title> 12 <link href="{{ "css/site.css" | relURL }}" rel="stylesheet"> 13 {{ range .AlternativeOutputFormats -}} 14 {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} 15 {{ end -}} 16 17 <link rel="apple-touch-icon" sizes="180x180" href="{{ "favicon/apple-touch-icon.png" | relURL }}"> 18 <link rel="icon" type="image/png" sizes="32x32" href="{{ "favicon/favicon-32x32.png" | relURL }}"> 19 <link rel="icon" type="image/png" sizes="16x16" href="{{ "favicon/favicon-16x16.png" | relURL }}"> 20 <link rel="manifest" href="{{ "favicon/site.webmanifest" | relURL }}"> 21 <link rel="mask-icon" href="{{ "favicon/safari-pinned-tab.svg" | relURL }}" color="#140f42"> 22 <link rel="shortcut icon" href="{{ "favicon/favicon.ico" | relURL }}"> 23 <meta name="msapplication-TileColor" content="#603cba"> 24 <meta name="msapplication-config" content="{{ "favicon/browserconfig.xml" | relURL }}"> 25 <meta name="theme-color" content="#ffffff">