Skip to content

Instantly share code, notes, and snippets.

@lerrua
Created July 21, 2011 19:02
Show Gist options
  • Save lerrua/1097926 to your computer and use it in GitHub Desktop.
Save lerrua/1097926 to your computer and use it in GitHub Desktop.
{% load webmedia_tags %}
{% if object_list %}
{% for obj in object_list %}
<div class="wd entry mf-300200-300 {{ obj.category|slugify }}">
<h5 class="deck" >{% if obj.deck %}{{ obj.deck }}{% else %}{{obj.category}}{% endif %}</h5>
<a href="{{ obj.get_se_url }}">{% embed obj.get_image.url width=300 height=200 %}</a>
<h3>
<a href="{{ obj.get_se_url }}">
<strong>{{ obj.title }}<span class="{{ obj.get_media_icon }}"></span></strong>
</a>
</h3>
</div>
{% endfor %}
{% else %}
<div class="wd empty"></div>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment