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