mirror of
https://github.com/loviuz/loviuz-website.git
synced 2025-01-05 04:47:45 +01:00
24 lines
680 B
HTML
24 lines
680 B
HTML
<head>
|
|
{{ partial "head/meta-tags.html" . }}
|
|
|
|
<title>{{ block "title" . }}{{ .Site.Title }}{{ if not (eq .Site.Title .Page.Title) }} - {{ .Page.Title }}{{ end }}{{ 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>
|
|
|