Hello, first, a big thanks to the developers of Publii,
I am currently discovering the CMS and I already like the whole concept!
I’m not a developer, don’t blame me if my questions may seem absurd,
I promise not to abuse 😉
I want to set up simple navigation on the home page:
A list of projects, and a list of blog posts, each in a separate section.
I think I understood that we could simulate the creation of pages by checking “hidden” on the post
so that it is not listed with the other posts.
These posts will be used for projects.
I also created a custom template (project_page) for the projects.
My question is what is the best way to display/list only the project pages in a separate section on the
site home page:
I had thought of something like this:
{{#each project_page}}
<h2>
{{title}}
</h2>
{{/each}}
But without success.
Thank you for any tips,