summaryrefslogtreecommitdiff
path: root/blog/plt/rss.xml
diff options
context:
space:
mode:
Diffstat (limited to 'blog/plt/rss.xml')
-rw-r--r--blog/plt/rss.xml40
1 files changed, 0 insertions, 40 deletions
diff --git a/blog/plt/rss.xml b/blog/plt/rss.xml
deleted file mode 100644
index 3dc7908..0000000
--- a/blog/plt/rss.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<rss version="2.0"
- xml:base="https://static.luevano.xyz"
- xmlns:atom="http://www.w3.org/2005/Atom"
- xmlns:content="http://purl.org/rss/1.0/modules/content/">
- <channel>
- <title>{{config.get("info", "title")}}</title>
- <link>{{config.get("url", "main")}}</link>
- <atom:link href="{{config.get("url", "main")}}/rss.xml" rel="self" type="application/rss+xml"/>
- <description>A personal weblog ranging from rants to how to's and other thoughts.</description>
- <language>en-us</language>
- <category>Blog</category>
- <copyright>Copyright 2021 David Luévano Alvarado</copyright>
- <managingEditor>david@luevano.xyz (David Luévano Alvarado)</managingEditor>
- <webMaster>david@luevano.xyz (David Luévano Alvarado)</webMaster>
- <pubDate>{{config.get("info", "rss_run_date")}}</pubDate>
- <lastBuildDate>{{config.get("info", "rss_run_date")}}</lastBuildDate>
- <generator>pyssg v{{config.get("info", "version")}}</generator>
- <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
- <ttl>30</ttl>
- <image>
- <url>{{config.get("url", "static")}}/images/blog.png</url>
- <title>{{config.get("info", "title")}}</title>
- <link>{{config.get("url", "main")}}</link>
- </image>
- {%for p in all_pages%}
- <item>
- <title>{{p.title}}</title>
- <link>{{p.url}}</link>
- <guid isPermaLink="true">{{p.url}}</guid>
- <pubDate>{{p.cdate_rss}}</pubDate>
- {%for t in p.tags%}
- <category>{{t[0].lower().capitalize()}}</category>
- {%endfor%}
- <description>{{p.summary}}</description>
- <content:encoded><![CDATA[{{p.content}}]]></content:encoded>
- </item>
- {%endfor%}
- </channel>
-</rss>