21 lines
714 B
Twig
21 lines
714 B
Twig
<?xml version="1.0" encoding="UTF-8"?>
|
|
<rss version="2.0"
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
|
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
xmlns:atom="http://www.w3.org/2005/Atom"
|
|
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
|
|
xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0"
|
|
xmlns:spotify="http://www.spotify.com/ns/rss"
|
|
xmlns:media="http://search.yahoo.com/mrss/">
|
|
|
|
<channel>
|
|
{% block channel %}{% endblock %}
|
|
{% block image %}{% endblock %}
|
|
|
|
{# Render each episoe in here #}
|
|
{% block episodes %}{% endblock %}
|
|
</channel>
|
|
|
|
</rss>
|