about summary refs log tree commit diff stats
path: root/layouts/partials/head.html
blob: 5d1df3cf99794ef7810354526c42843825171f99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en-GB">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,initial-scale=1">

    {{- if .IsHome }}
    <title>{{ .Site.Title }}</title>
    {{ else }}
    <title>{{ .Title }} &middot; {{ .Site.Title }}</title>
    {{ end -}}

    <link rel="stylesheet" href="/css/print.css" media="print">
    <link rel="stylesheet" href="/css/poole.css">
    {{- if .IsPage }}
    <link rel="stylesheet" href="/css/syntax.css">
    {{ else }}
    <link rel="prefetch" href="/css/syntax.css">
    {{- end }}
    <link rel="stylesheet" href="/css/hyde.css">
    <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}">
    {{ partial "hook_head_end.html" . }}
  </head>