diff --git a/conservancy/podjango/templates/podjango/podcasts.html b/conservancy/podjango/templates/podjango/podcasts.html new file mode 100644 index 0000000000000000000000000000000000000000..580e813c45072aba09cc3a95ae0cb3a90f4a5342 --- /dev/null +++ b/conservancy/podjango/templates/podjango/podcasts.html @@ -0,0 +1,18 @@ + + + + +{% extends "podjango/base_podcast.html" %} + +{% load podjango %} + +{% block subtitle %}Casts - {% endblock %} + +{% block content %} + +

Casts

+ +{% for podcast in podcasts %} +

{{ podcast.title }}

+{% endfor %} +{% endblock %}