Skip to content

Instantly share code, notes, and snippets.

@dinhnguyen
Created December 19, 2015 16:44
Show Gist options
  • Save dinhnguyen/251d33ef262f79f511af to your computer and use it in GitHub Desktop.
Save dinhnguyen/251d33ef262f79f511af to your computer and use it in GitHub Desktop.
<ul id="products">
{% for product in products %}
<li>
<h2>{{ product.name }}</h2>
Chỉ từ {{ product.price | money }}
<p>{{ product.description | truncatewords: 200 }}</p>
</li>
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment