aboutsummaryrefslogtreecommitdiff
path: root/feed.xml
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2024-09-14 15:44:33 -0600
committerMelody Horn <melody@boringcactus.com>2024-09-14 21:43:51 -0600
commitab4459ea2446ced5b93e84aa779f29d80708f374 (patch)
tree197c8003633ed053d889e0719d85afe76daacdb1 /feed.xml
parentb91287a80268e2af44cf6c5861f51243bd0c347f (diff)
downloadboringcactus.com-ab4459ea2446ced5b93e84aa779f29d80708f374.tar.gz
boringcactus.com-ab4459ea2446ced5b93e84aa779f29d80708f374.zip
11ty
Diffstat (limited to 'feed.xml')
-rw-r--r--feed.xml23
1 files changed, 0 insertions, 23 deletions
diff --git a/feed.xml b/feed.xml
deleted file mode 100644
index 5aff3a3..0000000
--- a/feed.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US">
- <link href="{{ root }}/feed.xml" rel="self" type="application/atom+xml" />
- <link href="{{ root }}/" rel="alternate" type="{{ mime }}" />
- <updated>{{ now.isoformat() }}Z</updated>
- <id>{{ root }}/feed.xml</id>
- <title>boringcactus</title>
- <subtitle>boringcactus's blog posts</subtitle>
- <author>
- <name>boringcactus / Melody Horn</name>
- <uri>/</uri>
- </author>
- {% for post in posts %}
- <entry>
- <title>{{ post.title }}</title>
- <link href="{{ root }}/{{ post.url }}.{{ ext }}" rel="alternate" type="{{ mime }}" title="{{ post.title }}" />
- <published>{{ post.date }}T00:00:00Z</published>
- <updated>{{ post.date }}T00:00:00Z</updated>
- <id>{{ root }}/{{ post.url }}.{{ ext }}</id>
- <content type="{{ content_type }}">{{ post | attr(content_attr) }}</content>
- </entry>
- {% endfor %}
-</feed>