shithub: hugo

ref: 1b785a7a6d3c264e39e4976c59b618c0ac1ba5f9
dir: /examples/blog/layouts/partials/header.html/

View raw version
<!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>