diff --git a/README.md b/README.md index 39070ec9..ec8a7e64 100644 --- a/README.md +++ b/README.md @@ -298,7 +298,7 @@ logo = "" # Example: "/logo.webp" managing_editor = "" # Example: "example@example.com (John Doe)" web_master = "" # Example: "example@example.com (John Doe)" -[paige.list_page] +[paige.subpage] disable_authors = false disable_collections = false disable_date = false @@ -1277,7 +1277,7 @@ If you want a more minimal look, try the following in `yoursite/hugo.toml`: ```toml -[params.paige.list_page] +[params.paige.subpage] disable_authors = true disable_date = true disable_keywords = true @@ -1347,7 +1347,7 @@ To hide the collection, section, and page lists on the home page, try the following in `yoursite/content/_index.md`: ```toml -[params.paige.list_page] +[params.paige.subpage] disable_collections = true disable_pages = true disable_sections = true diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md index 121aa210..ec17b78d 100644 --- a/exampleSite/content/_index.md +++ b/exampleSite/content/_index.md @@ -1,6 +1,6 @@ +++ title = "Paige" -[paige.list_page] +[paige.subpage] disable_collections = true disable_pages = true disable_sections = true diff --git a/exampleSite/content/customizations/_index.md b/exampleSite/content/customizations/_index.md index aee16218..3e1f83d2 100644 --- a/exampleSite/content/customizations/_index.md +++ b/exampleSite/content/customizations/_index.md @@ -10,7 +10,7 @@ credit = "Paige Theme" edit = "https://github.com/willfaught/paige/edit/master/exampleSite/content/%s" history = "https://github.com/willfaught/paige/commits/master/exampleSite/content/%s" license = "MIT License" -[paige.list_page] +[paige.subpage] disable_authors = false disable_date = false disable_keywords = false @@ -44,7 +44,7 @@ credit = "Paige Theme" edit = "https://github.com/willfaught/paige/edit/master/exampleSite/content/%s" history = "https://github.com/willfaught/paige/commits/master/exampleSite/content/%s" license = "MIT License" -[paige.list_page] +[paige.subpage] disable_authors = false disable_date = false disable_keywords = false diff --git a/exampleSite/content/customizations/show.md b/exampleSite/content/customizations/show.md index 25d0249a..cf391e4a 100644 --- a/exampleSite/content/customizations/show.md +++ b/exampleSite/content/customizations/show.md @@ -11,7 +11,7 @@ credit = "Paige Theme" edit = "https://github.com/willfaught/paige/edit/master/exampleSite/content/%s" history = "https://github.com/willfaught/paige/commits/master/exampleSite/content/%s" license = "MIT License" -[paige.list_page] +[paige.subpage] disable_authors = false disable_date = false disable_keywords = false @@ -47,7 +47,7 @@ credit = "Paige Theme" edit = "https://github.com/willfaught/paige/edit/master/exampleSite/content/%s" history = "https://github.com/willfaught/paige/commits/master/exampleSite/content/%s" license = "MIT License" -[paige.list_page] +[paige.subpage] disable_authors = false disable_date = false disable_keywords = false diff --git a/exampleSite/content/customizations/style.md b/exampleSite/content/customizations/style.md index 95db2f5b..dc26ebdc 100644 --- a/exampleSite/content/customizations/style.md +++ b/exampleSite/content/customizations/style.md @@ -34,7 +34,7 @@ style = """ font-style: italic; } """ -[paige.list_page] +[paige.subpage] disable_authors = false disable_date = false disable_keywords = false @@ -93,7 +93,7 @@ style = """ font-style: italic; } """ -[paige.list_page] +[paige.subpage] disable_authors = false disable_date = false disable_keywords = false diff --git a/exampleSite/hugo.toml b/exampleSite/hugo.toml index aa4b0650..c8109503 100644 --- a/exampleSite/hugo.toml +++ b/exampleSite/hugo.toml @@ -37,14 +37,6 @@ term = ["html"] [pagination] pagersize = 50 -[params.paige.list_page] -disable_authors = true -disable_date = true -disable_keywords = true -disable_reading_time = true -disable_series = true -disable_summary = true - [params.paige.page] disable_authors = true disable_date = true @@ -59,6 +51,14 @@ disable_toc = true disable_breadcrumbs = true disable_credit = true +[params.paige.subpage] +disable_authors = true +disable_date = true +disable_keywords = true +disable_reading_time = true +disable_series = true +disable_summary = true + [[params.paige.feed.atom.authors]] email = "example@example.com" name = "John Doe" diff --git a/layouts/partials/paige/list-item.html b/layouts/partials/paige/list-item.html index 25dd3f15..f77a44ef 100644 --- a/layouts/partials/paige/list-item.html +++ b/layouts/partials/paige/list-item.html @@ -1,21 +1,21 @@ {{ $page := . }} -{{ $authors := partial "paige/func-authors.html" $page | and ($page.Parent.Param "paige.list_page.disable_authors" | not) }} +{{ $authors := partial "paige/func-authors.html" $page | and ($page.Parent.Param "paige.subpage.disable_authors" | not) }} {{ $categories := $page.GetTerms "categories" }} -{{ $date := $page.PublishDate | and ($page.Parent.Param "paige.list_page.disable_date" | not) }} +{{ $date := $page.PublishDate | and ($page.Parent.Param "paige.subpage.disable_date" | not) }} {{ $dateformat := $page.Parent.Param "paige.date_format" | default ":date_long" }} -{{ $description := $page.Description | markdownify | plainify | htmlUnescape | and ($page.Parent.Param "paige.list_page.disable_description" | not) }} +{{ $description := $page.Description | markdownify | plainify | htmlUnescape | and ($page.Parent.Param "paige.subpage.disable_description" | not) }} {{ $draft := $page.Draft }} {{ $expired := and $page.ExpiryDate (lt $page.ExpiryDate now) }} {{ $flags := slice }} {{ $future := and $page.PublishDate (gt $page.PublishDate now) }} {{ $modified := and $page.PublishDate $page.Lastmod (lt $page.PublishDate $page.Lastmod) }} -{{ $readingtime := $page.ReadingTime | and ($page.Parent.Param "paige.list_page.disable_reading_time" | not) }} -{{ $series := $page.GetTerms "series" | and ($page.Parent.Param "paige.list_page.disable_series" | not) }} -{{ $summary := $page.Summary | markdownify | plainify | htmlUnescape | and ($page.Parent.Param "paige.list_page.disable_summary" | not) }} +{{ $readingtime := $page.ReadingTime | and ($page.Parent.Param "paige.subpage.disable_reading_time" | not) }} +{{ $series := $page.GetTerms "series" | and ($page.Parent.Param "paige.subpage.disable_series" | not) }} +{{ $summary := $page.Summary | markdownify | plainify | htmlUnescape | and ($page.Parent.Param "paige.subpage.disable_summary" | not) }} {{ $tags := $page.GetTerms "tags" }} {{ $textkeywords := eq ($page.Parent.Param "paige.keyword_style" | default "text") "text" }} -{{ $title := $page.Title | markdownify | plainify | htmlUnescape | and ($page.Parent.Param "paige.list_page.disable_title" | not) }} +{{ $title := $page.Title | markdownify | plainify | htmlUnescape | and ($page.Parent.Param "paige.subpage.disable_title" | not) }} {{ $titlelink := $page.RelPermalink }} {{ if $draft }} @@ -39,7 +39,7 @@ {{ end }} {{ $class := delimit (slice "paige-page" "w-100" | append $flags | uniq | sort) " " }} -{{ $keywords := sort (append $categories $tags) "Title" | and ($page.Parent.Param "paige.list_page.disable_keywords" | not) }} +{{ $keywords := sort (append $categories $tags) "Title" | and ($page.Parent.Param "paige.subpage.disable_keywords" | not) }}