blob: 89b7ea8c6ef6b51d3b69e99f4dd9c810c3377301 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{% extends 'base.html' %}
{% load typogrify_tags %}
{% load pagination_tags %}
{% load comments %}
{% block pagetitle %}The Lulu and Birdie Podcast{% endblock %}
{% block metadescription %}The Adventures of Lulu, Birdie, and Henry in podcast form - by Scott Gilbertson.{% endblock %}
{% block breadcrumbs %}{% include "lib/breadcrumbs.html" with breadcrumbs=breadcrumbs %}{% endblock %}
{% block primary %}<main role="main" class="archive-wrapper">
<div class="archive-intro">
<h1 class="archive-hed">{{podcast.title}}</h1>
{% if object.subtitle %}<h2 class="list-subhed">{{podcast.subtitle}}</h2>{% endif %}
</div>
<h1 class="archive-sans">Episodes</h1>{% autopaginate object_list 24 %}
<ul class="archive-list">{% for object in object_list %}
<li class="h-entry hentry archive-list-card archive-list-card-sm" itemscope itemType="http://schema.org/Article">
<span class="date dt-published card-smcaps">{{object.pub_date|date:"F Y"}}</span>
<a href="{{object.get_absolute_url}}">
<h2 class="card-hed">{{object.title|safe|smartypants|widont}}</h2>
<p class="p-summary card-lede">{% if object.subtitle %}{{object.subtitle}}{%else%}{{object.meta_description|safe|smartypants|widont}}{%endif%}</p>
</a>
</li>
{%endfor%}</ul>
<a href="{% url 'podcasts_show_feed_atom' podcast.slug 'mp3' %}" >MP3</a>
<a href="{% url 'podcasts_show_feed_atom' podcast.slug 'mp4' %}" >MP4</a>
<a href="{% url 'podcasts_show_feed_rss' podcast.slug 'mp3' %}" >OGG</a>
</main>
{%endblock%}
|