github.com/kovansky/hugo@v0.92.3-0.20220224232819-63076e4ff19f/examples/blog/layouts/partials/header.html (about) 1 <!doctype html> 2 <html lang="en"> 3 4 <head> 5 {{ partial "meta.html" . }} 6 7 <title>{{ .Title }} - {{ .Site.BaseURL }}</title> 8 <link rel="canonical" href="{{ .Permalink }}"> 9 {{ partial "header.includes.html" . }} 10 {{ with .OutputFormats.Get "RSS" -}} 11 {{ printf "<link href=%q rel=\"alternate\" type=%q title=%q />" .Permalink .MediaType $.Site.Title | safeHTML }} 12 {{- end }} 13 </head>