summaryrefslogtreecommitdiff
path: root/layouts/partials/head.html
blob: 9350ee65687a874d7cda4decbd7d1936d1f11ad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">

<title>
    {{ if .IsHome }}
    {{ site.Title }}
    {{ else }}
    {{ printf "%s | %s" .Title site.Title }}
    {{ end }}
</title>

{{ partialCached "head/css.html" . }}
{{ partialCached "head/js.html" . }}

{{ if hugo.IsProduction }}
{{ template "_internal/google_analytics.html" . }}
{{ end }}