diff options
author | EuAndreh <eu@euandre.org> | 2020-12-19 14:37:28 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-12-19 14:38:20 -0300 |
commit | 5dc0d06d617b1686760849cb55388c34f6eff7ad (patch) | |
tree | 611488f1556542e9db9a3310e801e484ef479fbc /_includes | |
parent | Add default links to end of slides (diff) | |
download | euandre.org-5dc0d06d617b1686760849cb55388c34f6eff7ad.tar.gz euandre.org-5dc0d06d617b1686760849cb55388c34f6eff7ad.tar.xz |
Remove placeholder values from is_audio section of feed.atom
Diffstat (limited to '')
-rw-r--r-- | _includes/feed.atom | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/_includes/feed.atom b/_includes/feed.atom index 9facc5a..b7a97ca 100644 --- a/_includes/feed.atom +++ b/_includes/feed.atom @@ -3,23 +3,20 @@ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> - <title>{{ site.t.podcasts.feed.title }}</title> - <description>{{ site.t[include.kind].feed.title[include.lang] | smartify | xml_escape }}</description> + <title>{{ site.title | smartify | xml_escape }}</title> + <description>{{ site.t.podcasts.feed.title[include.lang] | smartify | xml_escape }}</description> <link>{{ page.url | absolute_url | xml_escape }}</link> <atom:link href="{{ page.url | absolute_url | xml_escape }}" rel="self" type="application/atom+xml" /> <language>{{ include.lang }}</language> <copyright>CC BY-SA 4.0</copyright> - <!-- <lastBuildDate>{{ site.time | date_to_xmlschema }}</lastBuildDate> --> - <!-- <pubDate>FIXME</pubDate> --> - <!-- <docs>http://blogs.law.harvard.edu/tech/rss</docs> --> - <lastBuildDate>Sat, 25 Mar 2006 11:30:00 -0500</lastBuildDate> - <pubDate>Sat, 25 Mar 2006 11:30:00 -0500</pubDate> + <lastBuildDate>{{ site.time | date_to_xmlschema }}</lastBuildDate> <docs>http://blogs.law.harvard.edu/tech/rss</docs> + <author>{{ site.author.name | xml_escape }} 3</author> <webMaster>{{ site.author.email | xml_escape }} ({{ site.author.name | xml_escape }})</webMaster> <image> - <url>https://hipsters.tech/wp-content/uploads/2016/07/hipsters-logo.png</url> + <url>{{ '/' | absolute_url | xml_escape }}static/favicon.png</url> <link>{{ page.url | absolute_url | xml_escape }}</link> <title>{{ site.t.podcasts.feed.title }}</title> </image> @@ -53,10 +50,7 @@ </description> <enclosure url="{{ '/' | absolute_url | xml_escape }}resources/podcasts/{{ include.lang }}/{{ entry.date | date: "%Y-%m-%d" }}-{{ entry.ref }}.ogg" type="audio/ogg" length="11779397" /> <category>EuAndreh</category> - <pubDate>Sat, 25 Mar 2006 11:30:00 -0500</pubDate> - <!-- <image> --> - <!-- <url>https://hipsters.tech/wp-content/uploads/2016/07/hipsters-logo.png</url> --> - <!-- </image> --> + <pubDate>{{ entry.date | date_to_xmlschema }}</pubDate> </item> {% else %} <entry xml:lang="{{ entry.lang }}"> |