From 1848457904ec73625421874db40c2f7a19559d59 Mon Sep 17 00:00:00 2001 From: Angelo Stavrow Date: Mon, 30 Sep 2019 08:25:19 -0400 Subject: Use mainSections configuration parameter in list templates (#56) --- config.toml.example | 1 + layouts/_default/list.html | 2 +- layouts/index.html | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config.toml.example b/config.toml.example index 5e9e402..7d4cac3 100644 --- a/config.toml.example +++ b/config.toml.example @@ -12,6 +12,7 @@ theme = "indigo" Biography = "A short description, a few sentences describing the author. Set the 'ShowBio' parameter to false to hide this." ShowBio = true PermalinkText = "🔗" + mainSections = ["post"] # Contact/social-network identifiers for social icons EmailAddress = "email.address@example.com" diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 4af97c7..c975ac5 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,7 +1,7 @@ {{ partial "header.html" . }}

{{ .Title }}

-{{ range $index, $page := (.Paginate (where .Site.RegularPages "Type" "post")).Pages }} +{{ range $index, $page := (.Paginate (where .Site.RegularPages "Type" "in" site.Params.mainSections)).Pages }} {{ if ne $index 0 }} {{ end }} {{ .Render "li" }} diff --git a/layouts/index.html b/layouts/index.html index 4e973ac..3b02c07 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -3,7 +3,7 @@
-{{ range $index, $page := (.Paginate (where (where .Site.RegularPages "Type" "post") ".Params.hidden" "!=" "true" )).Pages }} +{{ range $index, $page := (.Paginate (where (where .Site.RegularPages "Type" "in" site.Params.mainSections) ".Params.hidden" "!=" "true" )).Pages }} {{ if ne $index 0 }} {{ end }} {{ .Render "li" }} -- cgit v1.2.3