Each Cast (episode) can belong to one or more Podcast, allowing episodes to be shared between podcasts. This enables us introductory episodes to be delivered in their own feed, but also included in the main "The Corresponding Source" feed. This required adding an additional `podcast_slug` argument to most views. The date archive views were dropped because they're not linked to from anywhere. Added a `podcasts` view as an index of all available Podcasts.
20 lines
863 B
HTML
20 lines
863 B
HTML
<!-- FIXME: SFLC SPECIFIC CONTENT!!! -->
|
|
<!-- Copyright (C) 2008 Bradley M. Kuhn <bkuhn@ebb.org> -->
|
|
<!-- Permission is granted to copy, modify, redistribute, propagate, -->
|
|
<!-- and/or convey this template in any form. -->
|
|
|
|
{% extends "base_standard.html" %}
|
|
|
|
{% load static %}
|
|
|
|
{% block head %}
|
|
<meta name="description" content="The Corresponding Source (formerly Free as in Freedom) is a bi-weekly oggcast about legal, policy and other issues in Free, Libre and Open Source Software" />
|
|
<meta name="keywords" content="software, freedom, podjango, open source, gnu, GNU, Open Source, Free and Open Source, Free and Open Source Software, FLOSS, FOSS, protect, protection, help, policy, linux, non-profit, oggcast, podcast" />
|
|
<style>
|
|
ul {
|
|
padding-left: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
a.feedlink img { margin-left: 0.5rem }
|
|
</style>
|
|
{% endblock %}
|