mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
46cafdbaca
Fixes #6037
12 lines
396 B
HTML
12 lines
396 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
{{ partial "meta.html" . }}
|
|
|
|
<title>{{ .Title }} - {{ .Site.BaseURL }}</title>
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
{{ partial "header.includes.html" . }}
|
|
{{ with .OutputFormats.Get "RSS" -}}
|
|
{{ printf "<link href=%q rel=\"alternate\" type=%q title=%q />" .Permalink .MediaType .Title | safeHTML }}
|
|
{{- end }}
|
|
</head>
|