Skip to content

Instantly share code, notes, and snippets.

@brendancarney
Last active July 28, 2022 14:27
Show Gist options
  • Save brendancarney/32a49cb9eb1a354aa26a9e144d989468 to your computer and use it in GitHub Desktop.
Save brendancarney/32a49cb9eb1a354aa26a9e144d989468 to your computer and use it in GitHub Desktop.
// option 1
{% product 123 %}
<div>
<h2>{% product.title %}</h2>
</div>
{% endproduct %}
// option 2
<div>
<h2>{% product_title 123 %}</h2>
</div>
// option 3
<div>
<h2>{% product.title %}</h2>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment