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" xmlns:dc="http://purl.org/dc/elements/1.1/"> 3 4<channel> 5<atom:link href="https://steve0greatness.github.io/blog/feed.rss" rel="self" type="application/rss+xml" /> 6<title>Steve0Greatness' Blog</title> 7<link>https://steve0greatness.github.io/</link> 8<description>A blog by a human being.</description> 9<language>en-us</language> 10<generator>Custom w/Jinja</generator> 11<image> 12<link>https://steve0greatness.github.io/</link> 13<title>Steve0Greatness' Blog</title> 14<url>https://steve0greatness.github.io/favicon.ico</url> 15<description>A blog by a human being.</description> 16<height>180</height> 17<width>180</width> 18</image> 19{% for post in PostList %} 20<item> 21<title>{{post["title"]}}</title> 22<link>https://steve0greatness.github.io/blog/{{post["pathname"]}}</link> 23<description> 24<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> 25{{post["content"]}} 26</description> 27<guid isPermaLink="false">{{post['pathname']}}</guid> 28<pubDate>{{post["rss-post-time"]}}</pubDate> 29<dc:date>{{post["atom-post-time"]}}</dc:date> 30<atom:published>{{post["atom-post-time"]}}</atom:published> 31<atom:updated>{{post["atom-updated-time"]}}</atom:updated> 32</item> 33{% endfor %} 34</channel> 35 36</rss>