Fix error in title (before it was thought that the title of the website was the first element in the menu)

This commit is contained in:
Benjamin Bach 2023-01-23 13:08:59 +01:00
parent 569b958132
commit 25ddc7a26b
Signed by: benjaoming
GPG Key ID: 7D49441634585664
1 changed files with 0 additions and 10 deletions

View File

@ -20,16 +20,6 @@
{{ $style := resources.Get "static/css/style.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint "sha512" }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}" integrity="{{ $style.Data.Integrity }}">
{{ if .IsHome }}
{{ $homepage := "Home" }}
{{ with .Site.Menus.nav }}
{{ range first 1 . }}
{{ $homepage = .Name }}
{{ end }}
{{ end }}
<title>{{ $homepage }} | {{ .Site.Title }}</title>
{{ else }}
<title>{{ .Title }} | {{ .Site.Title }}</title>
{{ end }}
</head>