Files @ 956f8c6fdaad
Branch filter:

Location: website/conservancy/content/about/license/index.html - annotation

bsturmfels
podjango: Add "Podcast" model to support multiple podcasts

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.
{% extends "base_about.html" %}
{% load static %}
{% block subtitle %}License and Sources - {% endblock %}
{% block submenuselection %}License{% endblock %}
{% block content %}
<h1>License and Source For This Website</h1>

<p>The software running this website is licensed under
  the <a href="http://www.gnu.org/licenses/agpl-3.0.html">AGPLv3</a>-or-later.
  You can find a <a href="/source/">full copy of the sources hosted on
  this site</a>, but it may be more interesting to know that the site
  is running on stock Debian 8 with Apache, Django, mod_python,
  and sqlite installed, and that the main sources for the site's code
  itself are <a href="https://k.sfconservancy.org/website">available in
  a git repository</a>.</p>

<p>The documents on this website are
  licensed as <a href="https://creativecommons.org/licenses/by-sa/4.0">CC-By-SA-4.0</a>.  In some cases, the documents are dual-licensed
  (AGPLv3-or-later|CC-By-SA-4.0), to make it more
  convenient to intermix the document with code.</p>

<p>Conservancy's Logo is also licensed
  under <a href="https://creativecommons.org/licenses/by-sa/4.0">CC-By-SA
  4.0</a>.  A <a href="{% static 'img/conservancy-logo_package.zip' %}">Conservancy logo
  package in ZIP format is available, which includes high quality SVG, PNG
  and other formats</a>.</p>

{% endblock %}