Starting the tooling for a podcast picks feed

This will be like a "best of" feed from my podcast app
This commit is contained in:
R Tyler Croy 2021-03-20 14:55:08 -07:00
parent b632be3ee9
commit 2b0d3d7aed
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
2 changed files with 20 additions and 0 deletions

4
_data/podcast.yml Normal file
View File

@ -0,0 +1,4 @@
# This file contains an array of the podcast picks
---
picks:
-

16
podcast-picks.xml Normal file
View File

@ -0,0 +1,16 @@
---
layout:
---
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel xmlns:atom="http://www.w3.org/2005/Atom" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/">
<title>rtyler's podcast picks</title>
<link href="{{ site.url }}/podcast-picks.xml" rel="self"/>
<link href="{{ site.url }}"/>
<pubDate>{{ site.time | date_to_xmlschema }}</pubDate>
<ttl>120</ttl>
{% for episode in site.podcast.picks %}
{% endfor %}
</channel>
</rss>