Created
October 22, 2013 21:45
-
-
Save w0w/7108740 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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