Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header.html « partials « layouts « blog « examples - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5863e59ec88888f4c0e2181c998316ef0bac2263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!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>