diff options
Diffstat (limited to 'themes/polaris/layouts/_default/baseof.html')
-rw-r--r-- | themes/polaris/layouts/_default/baseof.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/themes/polaris/layouts/_default/baseof.html b/themes/polaris/layouts/_default/baseof.html index df0c651..1b34f99 100644 --- a/themes/polaris/layouts/_default/baseof.html +++ b/themes/polaris/layouts/_default/baseof.html @@ -2,12 +2,16 @@ <html> <head> <meta charset="utf-8"> - <title>{{ .Site.Title }}</title> + <title>{{ if not .IsHome }}{{ .Title }} - {{ end }}{{ .Site.Title }}</title> <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="icon" href="/img/pfp.png"> {{ $notoSerif := resources.Get "css/noto-serif.css" | minify | fingerprint }} <link rel="stylesheet" href="{{ $notoSerif.Permalink }}"> {{ $style := resources.Get "css/style.css" | minify | fingerprint }} <link rel="stylesheet" href="{{ $style.Permalink }}"> + {{ with .OutputFormats.Get "rss" }} + {{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }} + {{ end }} </head> <body> <nav> |