条件分岐

トップページ

{% if template == 'index' %}

特定の商品ページ

{% if product.handle == 'hoge' %}

特定のURL

{% if request.path == '/products/hoge' %}

特定のコレクション

{% if collection.handle == 'all' %}

URLに特定の文字列を含む

{% if handle contains 'hoge' %}