A mirror of my website's source code.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 blog-feed.rss

View raw Download
text/xml • 1.63 kiB
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://steve0greatness.nekoweb.org/blog/feed.rss" rel="self" type="application/rss+xml" />
6
<title>Steve0Greatness' Blog</title>
7
<link>https://steve0greatness.nekoweb.org/</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.nekoweb.org/</link>
13
<title>Steve0Greatness' Blog</title>
14
<url>https://steve0greatness.nekoweb.org/RSS-Img.png</url>
15
<description>A blog by a human being.</description>
16
<height>144</height>
17
<width>120</width>
18
</image>
19
{% for post in PostList %}
20
<item>
21
<title>{{post["title"]}}</title>
22
<link>https://steve0greatness.nekoweb.org/blog/{{post["pathname"]}}</link>
23
<atom:link type="text/plain" rel="alternate" href="https://steve0greatness.nekoweb.org/blog/{{post['plaintext']}}" />
24
<description>
25
&lt;p&gt;Depending on your Feed reader, you may want to &lt;a href="https://steve0greatness.nekoweb.org/blog/{{post['pathname']}}"&gt;read this article online&lt;/a&gt;.&lt;/p&gt;
26
{{post["rss-content"]}}
27
</description>
28
<guid isPermaLink="false">{{post['pathname']}}</guid>
29
<pubDate>{{post["rss-post-time"]}}</pubDate>
30
<atom:published>{{post["atom-post-time"]}}</atom:published>
31
<atom:updated>{{post["atom-update-time"]}}</atom:updated>
32
</item>
33
{% endfor %}
34
</channel>
35
36
</rss>
37