Skip to content

Instantly share code, notes, and snippets.

@funky-monkey
Forked from jackrhysider/feed.xml
Created January 9, 2021 12:04
Show Gist options
  • Save funky-monkey/200160732f567c744e2c4c3b0733a769 to your computer and use it in GitHub Desktop.
Save funky-monkey/200160732f567c744e2c4c3b0733a769 to your computer and use it in GitHub Desktop.
Podcast RSS Feed XML file for Jekyll
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:media="http://www.rssboard.org/media-rss" version="2.0">
<channel>
<title>Darknet Diaries</title>
<link>https://darknetdiaries.com/</link>
<language>en-us</language>
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
<copyright>Jack Rhysider</copyright>
<itunes:subtitle>True stories from the dark side of the Internet</itunes:subtitle>
<itunes:author>Jack Rhysider</itunes:author>
<itunes:summary>Explore the dark side of the Internet with host Jack Rhysider as he takes you on a journey through the chilling world of privacy hacks, data breaches, and cyber crime. The masterful criminal hackers who dwell on the dark side show us just how vulnerable we all are. </itunes:summary>
<itunes:keywords>infosec, security, hacking, privacy, Internet, hackers, breaches, threats, malware, trojan, virus, crypto</itunes:keywords>
<description>Explore the dark side of the Internet with host Jack Rhysider as he takes you on a journey through the chilling world of privacy hacks, data breaches, and cyber crime. The masterful criminal hackers who dwell on the dark side show us just how vulnerable we all are.</description>
<itunes:block>yes</itunes:block>
<itunes:owner>
<itunes:name>Jack Rhysider</itunes:name>
<itunes:email>jack+rss@darknetdiaries.com</itunes:email>
</itunes:owner>
<itunes:image href="https://darknetdiaries.com/imgs/darknet-diaries-rss.jpg" />
<itunes:category text="Technology">
<itunes:category text="Tech News"/>
</itunes:category>
<itunes:category text="Society &amp; Culture">
<itunes:category text="History"/>
</itunes:category>
<itunes:category text="Society &amp; Culture">
<itunes:category text="Personal Journals"/>
</itunes:category>
{% for post in site.posts limit:300 %}
<item>
<title>{% if post.slug %}Ep {{ post.slug | xml_escape }}{% endif %}: {{post.title | xml_escape }}</title>
<itunes:title>{{post.title | xml_escape }}</itunes:title>
<itunes:author>{{ post.author | xml_escape }}</itunes:author>
<itunes:subtitle>{{ post.podcast_summary | xml_escape }}</itunes:subtitle>
<itunes:summary><![CDATA[{{ post.podcast_summary | cdata_escape }}]]></itunes:summary>
<description><![CDATA[{{ post.podcast_summary | cdata_escape }} <br><br><a rel="payment" href="https://darknetdiaries.com">Visit DarknetDiaries.com to see more show notes.</a>]]></description>
<itunes:image href="https://darknetdiaries.com{{ post.podcast_image }}" />
<enclosure url="https://www.podtrac.com/pts/redirect.mp3/darknetdiaries.com/podcasts/{{ post.podcast_file }}" length="{% filesize %}./podcasts/{{post.podcast_file}}{% endfilesize %}" type="audio/mpeg" />
<itunes:duration>{% audioduration %}./podcasts/{{post.podcast_file}}{% endaudioduration %}</itunes:duration>
<itunes:season>1</itunes:season>
<itunes:episode>{% if post.slug %}{{ post.slug | xml_escape }}{% endif %}</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
<guid isPermaLink="false">{{ site.url }}/podcasts/{{ post.podcast_file }}</guid>
<pubDate>{{ post.date | date: "%a, %d %b %Y %T %z" }}</pubDate>
<itunes:explicit>{% if post.explicit %}yes{% else %}no{% endif %}</itunes:explicit>
</item>
{% endfor %}
</channel>
</rss>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment