Welcome to mirror list, hosted at ThFree Co, Russian Federation.

head.html « partials « layouts - github.com/luizdepra/hugo-coder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a966403401239666691292f97c7aec3e25e33c19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<head>
  {{ partial "head/meta-tags.html" . }}

  <title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>

  {{ if .Permalink }}
  <link rel="canonical" href="{{ .Permalink }}">
  {{ end }}

  {{ partialCached "head/theme-styles.html" . }}

  {{ partialCached "head/color-scheme.html" . }}

  {{ partialCached "head/custom-styles.html" . }}

  {{ partialCached "head/custom-icons.html" . }}

  {{ partial "head/alternative-output-formats.html" . }}

  {{ partialCached "head/hugo-generator.html" . }}

  {{ partial "head/extensions.html" . }}
</head>