summaryrefslogtreecommitdiffstats
path: root/themes/problematic/layouts/partials/head.html
blob: 12477e4178ae47d6f8ee14231933db347910c45c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    {{ with .Site.Params.description -}}
    <meta name="description" content="{{ . }}">
    {{ end }}
    {{ printf `<link rel="shortcut icon" href="%s">` ("favicon.ico" | absURL) | safeHTML }}
    {{ with .OutputFormats.Get "rss" -}}
        {{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
    {{ end -}}

    <title>{{ .Title }}</title>
</head>