Skip to content

Instantly share code, notes, and snippets.

@juque
Created May 8, 2012 16:21
Show Gist options
  • Select an option

  • Save juque/2636916 to your computer and use it in GitHub Desktop.

Select an option

Save juque/2636916 to your computer and use it in GitHub Desktop.
<ul id="product-attributes">
{% for field in product.attributes %}
{% if field.name == "Video" and field.value != "" %}
<li>Video: {{ fiel.value }}</li>
{% else %}
<li class="attribute-{{field.key}}">
<strong>{{ field.name }}:</strong> <span>{{ field.value }}</span>
</li>
{% endif %}
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment