Skip to content

Instantly share code, notes, and snippets.

@w0w
Created October 22, 2013 21:45
Show Gist options
  • Save w0w/7108740 to your computer and use it in GitHub Desktop.
Save w0w/7108740 to your computer and use it in GitHub Desktop.
{% block vid_list %}
<div class="container">
{% for vid in vid_list %}
<div class="four columns">
<!--Release-->
<div class="release">
<div class="release-visual">
<img src="images/covers/1.jpg" alt="The Chemical Brothers"> <!-- Load thumbnail here-->
<span class="effect"></span>
</div>
<div class="release-description">
<p class="artist-name"><a href="#">{{ vid.title }}</a></p>
<h5><a href="{% url "video_detail" vid.id %}">{{ vid.title }}</a></h5>
</div>
</div>
</div>
</div>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment