Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save blueprintmrk/411b45933b2dbd4c22047843daf5a2bf to your computer and use it in GitHub Desktop.
Save blueprintmrk/411b45933b2dbd4c22047843daf5a2bf to your computer and use it in GitHub Desktop.
Case statement for product template to build accessible breadcrumbs - https://www.shopify.com/partners/blog/breadcrumb-navigation
{% when 'product' %}
{% if collection.url %}
<li>
{{ collection.title | link_to: collection.url }}
</li>
{% endif %}
<li>
<a href="{{ product.url }}" aria-current="page">{{ product.title }}</a>
</li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment