diff options
author | gennyble <gen@nyble.dev> | 2024-03-13 05:32:02 -0500 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2024-03-13 05:33:32 -0500 |
commit | 588919965350beefc08d8e382de727eb21295b0a (patch) | |
tree | b523e54ff73907b40f754f81ac6e6117dce56e9c /support/atom.xml | |
parent | 0b94c2293df9df5c1ff5307d2f169c3c30c02bc6 (diff) | |
download | ∞-588919965350beefc08d8e382de727eb21295b0a.tar.gz ∞-588919965350beefc08d8e382de727eb21295b0a.zip |
march 13th, 2024
this is what was published on the 10th, here. https://amble.quest/notice/AfhzCKhLrynnNg5Qsi
Diffstat (limited to 'support/atom.xml')
-rw-r--r-- | support/atom.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/support/atom.xml b/support/atom.xml new file mode 100644 index 0000000..a2a1873 --- /dev/null +++ b/support/atom.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<feed xmlns="http://www.w3.org/2005/Atom"> + + <title>{feed_title}</title> + <subtitle>{feed_subtitle}</subtitle> + <updated>{feed_updated}</updated> + + <link rel="self" href="{feed_link}" type="application/atom+xml" /> + <id>{feed_id}</id> + + <author> + <name>{feed_author_name}</name> + <email>{feed_author_email}</email> + </author> + + {%pattern entry} + <entry> + <title>{entry_title}</title> + <link href="{entry_link}" rel="alternate" type="text/html" /> + <id>{entry_id}</id> + + <published>{entry_published}</published> + <updated>{entry_updated}</updated> + + <content type="html"> +{entry_content} + </content> + </entry> + {%end} +</feed> \ No newline at end of file |