Mercurial > public > sg101
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/templates/podcast/detail.html Mon Apr 06 02:43:12 2009 +0000 @@ -0,0 +1,12 @@ +{% extends 'podcast/base.html' %} +{% block title %}Podcast: {{ podcast.title }}{% endblock %} +{% block podcast-content %} +<div class="breadcrumb"> + <a href="{% url podcast.views.index %}">Podcast Index</a> >> {{ podcast.title }} +</div> +<h3>{{ podcast.pubdate|date:"F d, Y" }} • {{ podcast.title }}</h3> +<h4>{{ podcast.subtitle }}</h4> +{{ podcast.summary|linebreaks }} +<p><a href="{{ podcast.enclosure_url }}">Download Now</a> • +{{ podcast.enclosure_length|filesizeformat }} • {{ podcast.duration }}</p> +{% endblock %}