diff options
author | Valentin Popov <valentin@popov.link> | 2024-02-14 13:48:55 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-02-14 13:48:55 +0300 |
commit | 631ca196c9bbc7fc3eeef4cce6bd9a6463ef74d1 (patch) | |
tree | 43fae88532a2c9dcf998ed14661d5d8380eb544f /_pages | |
parent | d863b358a6570e397414b21d71e6236561ea8519 (diff) | |
download | popov.link-631ca196c9bbc7fc3eeef4cce6bd9a6463ef74d1.tar.xz popov.link-631ca196c9bbc7fc3eeef4cce6bd9a6463ef74d1.zip |
Set up the RSS feed and the authors of the posts
Diffstat (limited to '_pages')
-rw-r--r-- | _pages/atom.xml | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/_pages/atom.xml b/_pages/atom.xml deleted file mode 100644 index cdaab52..0000000 --- a/_pages/atom.xml +++ /dev/null @@ -1,45 +0,0 @@ ---- -layout: null -permalink: /atom.xml ---- - -<?xml version="1.0" encoding="utf-8"?> - -<feed xmlns="http://www.w3.org/2005/Atom"> - <link href="{{ site.rss | absolute_url | xml_escape }}" rel="self" type="application/atom+xml"/> - <link href="{{ site.url | xml_escape }}" rel="alternate" type="text/html"/> - <id>{{ site.url | absolute_url | xml_escape }}</id> - - <icon>{{ "/assets/apple-touch-icon.png" | absolute_url | xml_escape }}</icon> - <title>{{ site.title | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</title> - <subtitle>{{ site.description | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</subtitle> - <updated>{{ site.time | date_to_xmlschema }}</updated> - - <author> - <email>{{ site.author.email | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</email> - <name>{{ site.author.name | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</name> - <uri>{{ site.author.url | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</uri> - </author> - - {% for item in site.posts %} - <entry> - <link href="{{ item.url | absolute_url | xml_escape }}" rel="alternate" type="text/html"/> - <id>{{ item.url | absolute_url | xml_escape }}</id> - - <title>{{ item.title | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</title> - <summary>{{ item.description | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</summary> - <updated>{{ item.latest_update | default: item.date | date_to_xmlschema }}</updated> - <published>{{ item.date | date_to_xmlschema }}</published> - - <author> - <email>{{ site.author.email | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</email> - <name>{{ site.author.name | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</name> - <uri>{{ site.author.url | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}</uri> - </author> - - <content type="html" xml:base="{{ item.url | absolute_url | xml_escape }}"> - {{ item.content | strip_newlines | strip | xml_escape }} - </content> - </entry> - {% endfor %} -</feed> |