Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save uddhabh/3def130105f992326534cec5ae5caf16 to your computer and use it in GitHub Desktop.
Save uddhabh/3def130105f992326534cec5ae5caf16 to your computer and use it in GitHub Desktop.
<!-- template.name {{ template.name }} -->
{% case template.name %}
{% when 'index' %}
<link rel="canonical" href="{{ shop.url }}">
{% when 'collection' %}
<link rel="canonical" href="{{ shop.url }}/collections/{{ collection.handle }}">
{% when 'product' %}
<link rel="canonical" href="{{ shop.url }}/products/{{ product.handle }}">
{% when 'page' %}
<link rel="canonical" href="{{ shop.url }}/pages/{{ page.handle }}">
{% else %}
<link rel="canonical" href="{{ canonical_url }}">
{% endcase %}
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment