Throughout my liquid files, I see lots of conditional statements based on the current template, like this:
{% if template contains "product" %}
(do something)
{% endif %}
But I have an app installed that created it's own page:
MyStoreName.com/apps/store-locator
- which uses no template.
I need to add some code to my theme.liquid file which only executes on this app page. Is there any other way to identify the page?