Last active
July 28, 2022 14:27
-
-
Save brendancarney/32a49cb9eb1a354aa26a9e144d989468 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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