{% extends "./base.html" %}
{% load i18n %}
{% block title %}
{% if is_podcast %}{% trans "Subscribe" %}{% else %}{% trans "Feeds" %}{% endif %} – {{ blog.title }}
{% endblock %}
{% block main %}
{% if is_podcast %}{% trans "Subscribe" %}{% else %}{% trans "Feeds" %}{% endif %} – {{ blog.title }}
{% if is_podcast %}
{% if apple_podcasts_url or spotify_url or youtube_url %}
{% trans "Where to listen" %}
{% endif %}
{% block podlove_subscribe_button %}{% endblock podlove_subscribe_button %}
{% endif %}
{% if is_podcast %}
{% trans "Podcast Feeds" %}
| {% trans "Format" %} |
RSS |
Atom |
{% for feed in podcast_feeds %}
| {{ feed.format_label }} |
RSS |
Atom |
{% endfor %}
{% endif %}
{% endblock main %}