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: 739c7234c544471de0be018d9a7a8b7aaf1e99c9 (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" . }}

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

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

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