Shopify, theme Expanse.
I have two index templates - index.json and index.logged.json. And I want the site user to be redirected to index.logged.json if that user is logged in. I know how to verify the user:
{% if customer %}
...
{%- endif -%}
But how do I display index.logged.json if that user is logged in? Where should I write this condition?
Please help.

