Add canonicalUrl parameter

This commit is contained in:
HactarCE
2025-04-02 11:25:03 -04:00
parent 343ba2a4ae
commit bc07e401ad
2 changed files with 9 additions and 1 deletions
+5 -1
View File
@@ -94,7 +94,11 @@
{{ with .Params.robots }}
<meta name="robots" content="{{ . }}" />
{{ end }}
<link rel="canonical" href="{{ .Permalink }}" />
{{ if .Params.canonicalUrl }}
<link rel="canonical" href="{{ .Params.canonicalUrl }}">
{{ else }}
<link rel="canonical" href="{{ .Permalink }}">
{{ end }}
{{ range .AlternativeOutputFormats -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .RelPermalink ($.Site.Title | emojify) | safeHTML }}
{{ end -}}