hugo/examples/blog/layouts/partials/header.html

13 lines
396 B
HTML
Raw Normal View History

2014-04-12 16:04:17 -04:00
<!doctype html>
<html lang="en">
<head>
{{ partial "meta.html" . }}
2014-04-12 16:04:17 -04:00
<title>{{ .Title }} - {{ .Site.BaseURL }}</title>
2014-04-12 16:04:17 -04:00
<link rel="canonical" href="{{ .Permalink }}">
{{ partial "header.includes.html" . }}
2019-10-14 03:30:09 -04:00
{{ with .OutputFormats.Get "RSS" -}}
{{ printf "<link href=%q rel=\"alternate\" type=%q title=%q />" .Permalink .MediaType .Title | safeHTML }}
{{- end }}
</head>