]> njoseph.me Git - hyde.git/blame - layouts/partials/head.html
fix(partials/head): Allow zooming
[hyde.git] / layouts / partials / head.html
CommitLineData
da66ac19 1<!DOCTYPE html>
d06d24a0 2<html xmlns="http://www.w3.org/1999/xhtml"{{with .Site.LanguageCode}} xml:lang="{{.}}" lang="{{.}}"{{end}}>
da66ac19 3<head>
72d4bdf4 4 <link href="//gmpg.org/xfn/11" rel="profile">
da66ac19 5 <meta http-equiv="content-type" content="text/html; charset=utf-8">
4e4c359b 6 {{ .Hugo.Generator }}
da66ac19 7
8 <!-- Enable responsiveness on mobile devices-->
9bb31d6a 9 <meta name="viewport" content="width=device-width, initial-scale=1.0">
da66ac19 10
fe56862a 11 {{ if .IsHome -}}
61243733 12 <title>{{ .Site.Title }}</title>
fe56862a 13 {{- else -}}
61243733 14 <title>{{ .Title }} &middot; {{ .Site.Title }}</title>
fe56862a 15 {{- end }}
da66ac19 16
17 <!-- CSS -->
8cab2d27
BEP
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">
155f263d 22 {{ partial "head_fonts.html" . }}
da66ac19 23
24 <!-- Icons -->
25 <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png">
13774d80 26 <link rel="shortcut icon" href="/favicon.png">
da66ac19 27
28 <!-- RSS -->
99a6d2a3 29 <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
155f263d
KW
30
31 {{ partial "hook_head_end.html" . }}
da66ac19 32</head>