I want to publish chapters of multiple books, looking for guidance

This is the project up to date, I’ve made sure changes are up to date now.

layouts/shortcodes/listbooks.html

{{ range  (where .Site.Sections "Type" "in" .Site.Params.mainSections).ByTitle }}
  <li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
1 Like

Perfect! Thank you. I have been able to learn a lot thanks to the helpful community here.

Then for featuredbooks it’s simply changing main to featured with a featuredSections param listed in config.

Sounds about right.

1 Like