Layouts Interoperability

I’m having another go at getting Blog post to work properly with Layouts.

If I exclude the category using the Layouts setting my widget (Category List on full left) disappears from the topic list for that category (which I don’t want) but still appears in the actual topic.

In other words, this setting applies to the wrong thing as it is for this use-case. I want it to only exclude the Topic context of my specified category, not the Topic List.

I’ve done this as a CSS workaround for now:

// mitigates clash between layouts plugin and blog post TC
body.category-blog .main-content.topic .container.posts {
    grid-template-columns: none;
}