Mercurial > public > sg101
comparison gpp/templates/podcast/detail.html @ 1:dbd703f7d63a
Initial import of sg101 stuff from private repository.
author | gremmie |
---|---|
date | Mon, 06 Apr 2009 02:43:12 +0000 |
parents | |
children | 1ed461fd2030 |
comparison
equal
deleted
inserted
replaced
0:900ba3c7b765 | 1:dbd703f7d63a |
---|---|
1 {% extends 'podcast/base.html' %} | |
2 {% block title %}Podcast: {{ podcast.title }}{% endblock %} | |
3 {% block podcast-content %} | |
4 <div class="breadcrumb"> | |
5 <a href="{% url podcast.views.index %}">Podcast Index</a> >> {{ podcast.title }} | |
6 </div> | |
7 <h3>{{ podcast.pubdate|date:"F d, Y" }} • {{ podcast.title }}</h3> | |
8 <h4>{{ podcast.subtitle }}</h4> | |
9 {{ podcast.summary|linebreaks }} | |
10 <p><a href="{{ podcast.enclosure_url }}">Download Now</a> • | |
11 {{ podcast.enclosure_length|filesizeformat }} • {{ podcast.duration }}</p> | |
12 {% endblock %} |