]> njoseph.me Git - hyde.git/blob - layouts/partials/head.html
30ff316bc13323712dbe208c82ea99c4f9c5b212
[hyde.git] / layouts / partials / head.html
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml"{{with .Site.LanguageCode}} xml:lang="{{.}}" lang="{{.}}"{{end}}>
3 <head>
4 <link href="//gmpg.org/xfn/11" rel="profile">
5 <meta http-equiv="content-type" content="text/html; charset=utf-8">
6 {{ hugo.Generator }}
7
8 <!-- Enable responsiveness on mobile devices-->
9 <meta name="viewport" content="width=device-width, initial-scale=1.0">
10
11 {{ if .IsHome -}}
12 <title>{{ .Site.Title }}</title>
13 {{- else -}}
14 <title>{{ .Title }} &middot; {{ .Site.Title }}</title>
15 {{- end }}
16
17 <!-- CSS -->
18 <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/print.css" media="print">
19 <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/poole.css">
20 <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/syntax.css">
21 <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/hyde.css">
22 {{ partial "head_fonts.html" . }}
23
24 <!-- Icons -->
25 <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png">
26 <link rel="shortcut icon" href="/favicon.png">
27
28 <!-- RSS etc -->
29 {{ range .AlternativeOutputFormats -}}
30 {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
31 {{ end -}}
32
33 {{ partial "hook_head_end.html" . }}
34 </head>