diff options
author | Botond Hende <nettingman@gmail.com> | 2024-09-04 20:05:51 +0200 |
---|---|---|
committer | Botond Hende <nettingman@gmail.com> | 2024-09-04 20:05:51 +0200 |
commit | bea80928f694671010bc99493d31879df7d42836 (patch) | |
tree | afb71282df8f01ce4b2dd87a292febe7ad8e3537 /templates/feed.xml.j2 |
initial commit
Diffstat (limited to 'templates/feed.xml.j2')
-rw-r--r-- | templates/feed.xml.j2 | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/feed.xml.j2 b/templates/feed.xml.j2 new file mode 100644 index 0000000..7e51092 --- /dev/null +++ b/templates/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 isPermaLink="false">{{ 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 |