blog-feed.atom
XML 1.0 document, ASCII text
1<?xml version="1.0" encoding="UTF-8"?> 2<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/"> 3<id>https://steve0greatness.github.io/blog/</id> 4<link type="text/html" rel="alternate" href="https://steve0greatness.github.io/blog/" /> 5<link type="application/atom+xml" rel="self" href="https://steve0greatness.github.io/blog/feed.atom" /> 6<title>Steve0Greatness' Blog</title> 7<subtitle>A blog by a human being</subtitle> 8<author> 9<name>Steve0Greatness</name> 10<uri>https://steve0greatness.github.io</uri> 11</author> 12<generator>Custom w/Jinja</generator> 13<updated>{{PostList[0]["atom-update-time"]}}</updated> 14{% for post in PostList %} 15<entry> 16<title>{{post["title"]}}</title> 17<link type="text/html" rel="alternate" href="https://steve0greatness.github.io/blog/{{post['pathname']}}" /> 18<link type="text/plain" rel="alternate" href="https://steve0greatness.github.io/blog/{{post['plaintext']}}" /> 19<content type="html"> 20<p>Depending on your Feed reader, you may want to <a href="https://steve0greatness.github.io/blog/{{post['pathname']}}">read this article online</a>,</p> 21{{post["rss-content"]}} 22</content> 23<id>https://steve0greatness.github.io/blog/{{post['pathname']}}</id> 24<published>{{post['atom-post-time']}}</published> 25<updated>{{post['atom-update-time']}}</updated> 26</entry> 27{% endfor %} 28</feed> 29