Remove paige.title config

This commit is contained in:
Will Faught
2025-02-07 23:42:26 -08:00
parent 80a6f40989
commit 05f7d48349
4 changed files with 5 additions and 6 deletions

View File

@@ -3,7 +3,7 @@
{{ $title := $page.Title }}
{{ if and $page.IsHome (not $title) }}
{{ $title = $page.Param "paige.title" | default (site.Title) }}
{{ $title = site.Title }}
{{ end }}
{{ $title = $title | markdownify | plainify | htmlUnescape }}
@@ -14,7 +14,7 @@
{{ $title := .Title }}
{{ if and .IsHome (not $title) }}
{{ $title = $page.Param "paige.title" | default (site.Title) }}
{{ $title = site.Title }}
{{ end }}
{{ $titles = $titles | append ($title | markdownify | plainify | htmlUnescape) }}