aboutsummaryrefslogtreecommitdiffstats
path: root/atom.xml.njk
diff options
context:
space:
mode:
author2024-06-21 21:59:53 +0530
committer2024-06-21 21:59:53 +0530
commita190ecdc3f0e06c35b0bfb3ba825a1b29b162f37 (patch)
tree8fef59a521ef25442d0c99c0e24c2e5bb97827d0 /atom.xml.njk
parentHot fix (diff)
downloadsudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar
sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.gz
sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.bz2
sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.lz
sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.xz
sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.zst
sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.zip
Update deps and updated the about page.
On branch main Your branch is up to date with 'origin/main'. Changes to be committed: modified: 404.html modified: _includes/base.html new file: _includes/main.css modified: _includes/page.html modified: _includes/post.html modified: about.html deleted: assets/main.css deleted: atom.xml.njk modified: eleventy.config.js modified: index.html modified: package-lock.json modified: package.json modified: posts.html modified: posts/posts.11tydata.js
Diffstat (limited to '')
-rw-r--r--atom.xml.njk33
1 files changed, 0 insertions, 33 deletions
diff --git a/atom.xml.njk b/atom.xml.njk
deleted file mode 100644
index e19f107..0000000
--- a/atom.xml.njk
+++ /dev/null
@@ -1,33 +0,0 @@
----json
-{
- "permalink": "/atom.xml",
- "eleventyExcludeFromCollections": true
-}
----
-<?xml version="1.0" encoding="utf-8"?>
-<feed xmlns="http://www.w3.org/2005/Atom" xml:base="{{ metadata.url }}">
- <title>{{ metadata.title }}</title>
- <subtitle>{{ metadata.subtitle }}</subtitle>
- <link href="{{ permalink | absoluteUrl(metadata.url) }}" rel="self" />
- <link href="{{ metadata.url }}" />
- <updated
- >{{ collections.posts | getNewestCollectionItemDate | dateToRfc3339
- }}</updated
- >
- <id>{{ metadata.url }}</id>
- <author>
- <name>{{ metadata.author.name }}</name>
- <email>{{ metadata.author.email }}</email>
- </author>
- {%- for post in collections.post | reverse %} {%- set absolutePostUrl = post.url | absoluteUrl(metadata.url) %}
- <entry>
- <title>{{ post.data.title }}</title>
- <link href="{{ absolutePostUrl }}" />
- <updated>{{ post.date | dateToRfc3339 }}</updated>
- <id>{{ absolutePostUrl }}</id>
- <content xml:lang="{{ metadata.language }}" type="html">
- <![CDATA[{{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) }}]]>
- </content>
- </entry>
- {%- endfor %}
-</feed>