Forked from levinmejia/liquid-output.liquid
Last active
March 17, 2017 19:39
How Liquid output tags work - http://shopify.com/partners/blog/93657286-4-advanced-shopify-theming-techniques-to-add-to-your-workflow
This file contains 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
// Liquid | |
<h1>{{ product.title }}</h1> | |
<p>{{ product.description }}</p> | |
// HTML returned | |
<h1>Snowboard Product Title</h1> | |
<p>The snowboard product description.</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment