I am having a challenge with a portion of my site and the caching configuration. The site is cached, but I am having challenges disabling the cache when I list pages while in a blog format. I put in the following entry blog page, but it’s still caching:
I figured out my issue. I was including a template in my content {% include 'partials/subpages.html.twig' %} which was being cached as part of the content. I added some logic to the main page template to include a template based on a front-matter setting. This is now following the caching logic that I was expecting.