Changeset - b3044cbeda3f
[Not reviewed]
0 2 0
Ben Sturmfels (bsturmfels) - 3 months ago 2024-02-07 03:19:28
ben@sturm.com.au
podjango: Comment out itunes link pending update
2 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
conservancy/podjango/templates/podjango/feeds.html
Show inline comments
 
{% extends "base_standard.html" %}
 

	
 
{% block subtitle %}News Feeds - {% endblock %}
 

	
 
{% block content %}
 

	
 
<h1>Feeds Available at faif.us</h1>
 
<h1>Feeds Available</h1>
 

	
 
<p>All feeds are RSS 2.0.</p>
 

	
 
<ul>
 
{% for feed in feeds %}
 
<li><a href="{{ feed.get_absolute_url }}">{{ feed.title }}</a> &mdash;
 
{{ feed.description|safe }}</li>
 
{% endfor %}
 
</ul>
 

	
 
{% endblock %}
conservancy/podjango/templates/podjango/frontpage.html
Show inline comments
...
 
@@ -9,26 +9,26 @@
 
<p>The Corresponding Source (formerly Free as in Freedom) is a bi-weekly oggcast, hosted and presented by
 
<a href="http://ebb.org/bkuhn">Bradley M. Kuhn</a> and <a href="http://gnomg.org">Karen Sandler</a>.
 
The discussion includes legal, policy, and many other issues in the Free, Libre,
 
and Open Source Software (FLOSS) world.  Occasionally, guests join
 
Bradley and Karen to discuss various topics regarding FLOSS.</p>
 

	
 
{% include "podjango/credits.inc.html" %}
 
{% include "podjango/feedback.inc.html" %}
 

	
 
<h2>Follow the RSS and Other Feeds</h2>
 

	
 
<p>There is RSS for both <a href="{% url 'podjango:feed-ogg' %}">ogg format</a>
 
  and  <a href="{% url 'podjango:feed-mp3' %}">mp3 format</a>.  These links <em>might</em>
 
  work if you want to <a href="itpc://faif.us{% url 'podjango:feed-mp3' %}">subscribe to the show</a> <a href="https://itunes.apple.com/us/podcast/free-as-in-freedom/id450458894">with proprietary Apple devices.</a>  </p>
 
  and  <a href="{% url 'podjango:feed-mp3' %}">mp3 format</a>.<!-- These links <em>might</em>
 
  work if you want to <a href="itpc://faif.us{% url 'podjango:feed-mp3' %}">subscribe to the show</a> <a href="https://itunes.apple.com/us/podcast/free-as-in-freedom/id450458894">with proprietary Apple devices.</a>--></p>
 

	
 
<h2>{% include 'podjango/feed_links.inc.html' %}<a href="{% url 'podjango:cast' %}">Recent Shows</a></h2>
 

	
 
{% for cc in cast %}
 
<div class="pa2 mb2" style="background: #F0FFB8">
 
<a class="feedlink" href="{{ cc.ogg_path }}">{% include 'podjango/audio_ogg_button.inc.html' %}</a>
 
<a class="feedlink" href="{{ cc.mp3_path }}">{% include 'podjango/audio_mp3_button.inc.html' %}</a>
 
<h3><a href="{{ cc.get_absolute_url }}">{{ cc.title|safe }}</a></h3>
 
<p class="date">{{ cc.pub_date|date:"F j, Y" }}</p>
 
{{ cc.summary|safe }}
 
</div>
 
{% endfor %}
0 comments (0 inline, 0 general)