Skip to content

Instantly share code, notes, and snippets.

@arafatjamil01
Created April 18, 2020 09:35
Show Gist options
  • Save arafatjamil01/3d3b1fc7a2af505888052aa4082165e6 to your computer and use it in GitHub Desktop.
Save arafatjamil01/3d3b1fc7a2af505888052aa4082165e6 to your computer and use it in GitHub Desktop.
Shopify theme codes
Add favicon:
===========
{% if settings.favicon_enable %}
<link rel="shortcut icon" href="{{ 'favicon.png' | asset_url }}" type="image/png" />
{% endif %}
<!-- Title and description ================================================== -->
<title>
{{ page_title }}{% if current_tags %}{% assign meta_tags = current_tags | join: ', ' %} &ndash; {{ 'general.meta.tags' | t: tags: meta_tags }}{% endif %}{% if current_page != 1 %} &ndash; {{ 'general.meta.page' | t: page: current_page }}{% endif %}{% unless page_title contains shop.name %} &ndash; {{ shop.name }}{% endunless %}
</title>
{% if page_description %}
<meta name="description" content="{{ page_description | escape }}">
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment