blog-feed.rss
XML 1.0 document, ASCII text
1<?xml version="1.0" encoding="UTF-8" ?> 2<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:atom="http://www.w3.org/2005/Atom"> 3 4<channel> 5<atom:link href="https://www.moddb.com/mods/timewarp/features/feed/rss.xml" rel="self" type="application/rss+xml" /> 6<title>Steve0Greatness' Blog</title> 7<link>https://steve0greatness.github.io/</link> 8<description>A human being</description> 9<language>en-us</language> 10<generator>Custom w/Jinja</generator> 11{% for post in PostList %} 12<item> 13<title>{{post["title"]}}</title> 14<link>https://steve0greatness.github.io/blog/{{post["pathname"]}}</link> 15<description> 16<p>Depending on your RSS reader, you may want to <a href="https://steve0greatness.github.io/blog/{{post['pathname']}}">read this article online</a>,</p> 17{{post["content"]}} 18</description> 19<guid isPermaLink="false">{{post['pathname']}}</guid> 20</item> 21{% endfor %} 22</channel> 23 24</rss>