18 lines
534 B
HTML
18 lines
534 B
HTML
<!-- FIXME: SFLC specific content -->
|
|
<!-- Copyright (C) 2008 Bradley M. Kühn <bkuhn@ebb.org> -->
|
|
<!-- Permission is granted to copy, modify, redistribute, propagate, -->
|
|
<!-- and/or convey this template in any form. -->
|
|
{% extends "podjango/base_podcast.html" %}
|
|
|
|
{% load podjango %}
|
|
|
|
{% block subtitle %}Casts - {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Casts</h1>
|
|
|
|
{% for podcast in podcasts %}
|
|
<p><a href="{% url 'podjango:cast-home' podcast_slug=podcast.slug %}">{{ podcast.title }}</a></p>
|
|
{% endfor %}
|
|
{% endblock %}
|