Skip to content

Instantly share code, notes, and snippets.

@arbarlow
Created September 10, 2011 16:26
Show Gist options
  • Select an option

  • Save arbarlow/1208495 to your computer and use it in GitHub Desktop.

Select an option

Save arbarlow/1208495 to your computer and use it in GitHub Desktop.
<ul id="products">
{% for product in products %}
<li>
<h2>{{ product.title }}</h2>
Only {{ product.price | format_as_money }}
<p>{{ product.description | prettyprint | truncate: 200 }}</p>
</li>
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment