diff options
author | breadcat | 2020-11-26 12:41:07 +0000 |
---|---|---|
committer | breadcat | 2020-11-26 12:41:07 +0000 |
commit | cd094b45778e17233f0590d8df21e8f7b752a4ca (patch) | |
tree | a5e1107d01e55bd176274f00b06947efcf0ff28a /themes/Brine/layouts | |
parent | 363a107e5d66f9a9df98d362e2b9b3811d5d930b (diff) | |
download | blog.minskio.co.uk-cd094b45778e17233f0590d8df21e8f7b752a4ca.tar.gz blog.minskio.co.uk-cd094b45778e17233f0590d8df21e8f7b752a4ca.tar.bz2 blog.minskio.co.uk-cd094b45778e17233f0590d8df21e8f7b752a4ca.zip |
Shuffle around site title format
Diffstat (limited to 'themes/Brine/layouts')
-rw-r--r-- | themes/Brine/layouts/_default/baseof.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/Brine/layouts/_default/baseof.html b/themes/Brine/layouts/_default/baseof.html index 79fd102..156ef06 100644 --- a/themes/Brine/layouts/_default/baseof.html +++ b/themes/Brine/layouts/_default/baseof.html @@ -1,6 +1,6 @@ <!doctype html> <html lang="{{ .Site.LanguageCode | default "en-us" }}"> -<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Site.Title }} - {{ .Title }}{{ end }}</title> +<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title> <link href="/favicon.ico" rel=icon /> <meta content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}" name="description" /> <meta content="{{ .Site.Params.author | default "John Doe" }}" name="author" /> |