-
Notifications
You must be signed in to change notification settings - Fork 1
/
rss.liquid
53 lines (49 loc) · 2.98 KB
/
rss.liquid
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
permalink: /podcast.rss
eleventyExcludeFromCollections: true
---
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>Unusable podcast (UX & usability)</title>
<link>https://podcast.theunusable.com</link>
<atom:link href="https://podcast.theunusable.com/podcast.rss" rel="self" type="application/rss+xml" />
<language>en-gb</language>
<itunes:subtitle>Discussions about the importance of usability & UX in technology & the world around us.</itunes:subtitle>
<itunes:author>Andrew Waite & David Ball</itunes:author>
<itunes:summary>Discussions about the importance of usability & UX in technology & the world around us.</itunes:summary>
<description>Discussions about the importance of usability & UX in technology & the world around us.</description>
<itunes:owner>
<itunes:name>Andrew Waite</itunes:name>
<itunes:email>[email protected]</itunes:email>
</itunes:owner>
<itunes:explicit>no</itunes:explicit>
<itunes:image href="https://podcast.theunusable.com/unusable-logo.jpg" />
<itunes:category text="Technology"/>
{% assign podcasts = collections.podcast | reverse %}
{% for podcast in podcasts %}
{% assign podcastUrl = metadata.url | append:"podcasts/" | append: podcast.data.mp3 %}
<item>
<title>{{ podcast.data.title }}</title>
<itunes:summary>
{{ podcast.data.description }}
</itunes:summary>
<description><![CDATA[
{{ podcast.templateContent }}
The Unusable podcast is presented by Andrew Waite & David Ball, who discuss the importance of user experience (UX) in technology & the world around us, & talk about great design that just works - or moan about it when it doesn't.
Here's the link to the episode: {{ podcastUrl }}
Music is by [Gold5472](https://gold5472.newgrounds.com/)
]]>
</description>
<link>{{ metadata.siteUrl }}{{ podcast.url }}</link>
<enclosure url="{{ podcastUrl }}" type="audio/mpeg" length="0"></enclosure>
<pubDate>{{ podcast.date | rssDate }}</pubDate>
<itunes:author>Andrew Waite & David Ball</itunes:author>
<itunes:duration>{{ podcast.data.duration }}</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:episode>{{ podcast.data.number }}</itunes:episode>
<guid>{{ metadata.siteUrl }}{{ podcast.url }}</guid>
</item>
{% endfor %}
</channel>
</rss>