mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 19:56:41 +02:00
15 lines
392 B
HTML
15 lines
392 B
HTML
<head>
|
|
{{ partial "meta.html" . }}
|
|
<base href="{{ .Site.BaseURL }}">
|
|
<title>
|
|
{{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }}
|
|
{{ if eq $url "/" }}
|
|
{{ .Site.Title }}
|
|
{{ else }}
|
|
{{ if .Params.heading }} {{ .Params.heading }} {{ else }} {{ .Title }} {{ end }}
|
|
{{ end }}
|
|
</title>
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
{{ partial "head_includes.html" . }}
|
|
</head>
|