summaryrefslogtreecommitdiff
path: root/feed.xml
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-08-27 02:40:08 -0600
committerHombreLaser <sebastian-440@live.com>2023-08-27 02:40:08 -0600
commitac6772f292a83217e10e38ba853c76b5666133e0 (patch)
treed0d4eb27d9482dc275d75f48a2ca029d825e52a6 /feed.xml
Commit inicial
Diffstat (limited to 'feed.xml')
-rw-r--r--feed.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/feed.xml b/feed.xml
new file mode 100644
index 0000000..88df13d
--- /dev/null
+++ b/feed.xml
@@ -0,0 +1,22 @@
+---
+layout: null
+---
+
+<?xml version="1.0" encoding="UTF-8"?>
+<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
+ <channel>
+ <title>{{ site.name }}</title>
+ <description>{{ site.description }}</description>
+ <link>{{ site.url }}{{ site.baseurl }}</link>
+ <atom:link href="{{ site.url }}{{ site.baseurl }}/feed.xml" rel="self" type="application/rss+xml" />
+ {% for post in site.posts limit:10 %}
+ <item>
+ <title>{{ post.title }}</title>
+ <description>{{ post.content | xml_escape }}</description>
+ <pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
+ <link>{{ site.url }}{{ site.baseurl}}{{ post.url }}</link>
+ <guid isPermaLink="true">{{ site.url }}{{ site.baseurl}}{{ post.url }}</guid>
+ </item>
+ {% endfor %}
+ </channel>
+</rss>