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{% for post in PostList %} 14<entry> 15<title>{{post["title"]}}</title> 16<link type="text/html" rel="alternate" href="https://steve0greatness.github.io/blog/{{post['pathname']}}" /> 17<content type="html"> 18<p>Depending on your Atom reader, you may want to <a href="https://steve0greatness.github.io/blog/{{post['pathname']}}">read this article online</a>,</p> 19{{post["content"]}} 20</content> 21<id>{{post['pathname']}}</id> 22<published>{{post['atom-post-time']}}</published> 23<updated>{{post['atom-update-time']}}</updated> 24</entry> 25{% endfor %} 26</feed> 27