If then struct needed for filtered posts view.

Hello,

I’ve been searching for a solution to detect when the view state is in the filtered posts (topics) view. I have not found is_topic_view or anything close.

The scenario is, I need to wrap an if/then around some custom modules to remove them from this view. One thought was to use a search on the URL for /topic/ but am not sure how to build that and the if/then around it within hubl.

Any ideas?

@stefen probably has some ideas on how to help you out here :wink:

@CMcClellan8 you should be able to use the variable `topic` with a blog listing template e.g.:

{% if topic %}
I'm a topic page!
{% endif %}