diff options
| author | Botond Hende <nettingman@gmail.com> | 2025-12-23 17:39:29 +0100 |
|---|---|---|
| committer | Botond Hende <nettingman@gmail.com> | 2025-12-23 17:39:29 +0100 |
| commit | a365cbec827ad44e196c62558272e723e3a3b564 (patch) | |
| tree | 8655728428e2eaffd7c58b5c265c06a46c5d8560 /blog/templates/blog_feed.xml.j2 | |
| parent | 7308b658153e089456dd1b5ad691ff8db19088cd (diff) | |
comic page, other than buttons, finished
Diffstat (limited to 'blog/templates/blog_feed.xml.j2')
| -rw-r--r-- | blog/templates/blog_feed.xml.j2 | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/blog/templates/blog_feed.xml.j2 b/blog/templates/blog_feed.xml.j2 new file mode 100644 index 0000000..1133d85 --- /dev/null +++ b/blog/templates/blog_feed.xml.j2 @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<rss version="2.0"> +<channel> + <title>@yggdrasil</title> + <link>https://blog.wazul.moe/feed.xml</link> + <description>The chronicle of my works and learnings</description> + <language>en</language> + <lastBuildDate>{{ build_date }}</lastBuildDate> + {% for post in posts %} + <item> + <title>{{ post.title() }}</title> + <link>{{ post.get_link() }}</link> + <description>{{ post.intro }}</description> + <guid>{{ post.get_link() }}</guid> + <author>contact@wazul.moe</author> + <pubDate>{{ post.get_publish_time_rfc2822() }}</pubDate> + </item> + {% endfor %} + </channel> +</rss>
\ No newline at end of file |
