summaryrefslogtreecommitdiffstats
path: root/examples/blog/layouts/partials/header.html
blob: 94de4c123bd781f286fef64ca1df8c5a95f574e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!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 $.Site.Title | safeHTML }}
    {{- end }}
</head>