diff options
author | Bradley Taunt <bt@btxx.org> | 2024-01-18 10:44:33 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-01-18 10:44:33 -0500 |
commit | 686a5b1e94a35cd1e293483638ece0d648c4563f (patch) | |
tree | 592e59dda5e3de12faf1532da826be556350fadd /atom.xml |
Initial commit to new cgit platform
Diffstat (limited to 'atom.xml')
-rw-r--r-- | atom.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/atom.xml b/atom.xml new file mode 100644 index 0000000..13c57f0 --- /dev/null +++ b/atom.xml @@ -0,0 +1,26 @@ +--- +layout: null +--- + +<?xml version="1.0" encoding="utf-8"?> +<feed xmlns="http://www.w3.org/2005/Atom"> + + <title>{{ site.title }}</title> + <link href="{{ site.url }}{{ site.baseurl }}/atom.xml" rel="self"/> + <link href="{{ site.url }}{{ site.baseurl }}/"/> + <updated>{{ site.time | date_to_xmlschema }}</updated> + <id>{{ site.url }}</id> + <author> + <name>{{ site.author.name }}</name> + <email>{{ site.author.email }}</email> + </author> + + {% for item in site.site_listings %} + <entry> + <title>{{ item.pageurl }} - {{ item.size }} kb</title> + <link href="https://{{ item.pageurl }}"/> + <id>https://{{ item.pageurl }}</id> + </entry> + {% endfor %} + +</feed> |