40 lines
1.5 KiB
Text
40 lines
1.5 KiB
Text
---
|
|
permalink: feed.xml
|
|
eleventyExcludeFromCollections: true
|
|
date: git Last Modified
|
|
metadata:
|
|
title: devon.lol
|
|
description: I write essays to no one about video games, technology, the internet, and other things in the world.
|
|
language: en-us
|
|
url: https://devon.lol/
|
|
author:
|
|
name: Devon Campbell
|
|
email: devon@devon.lol
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>{{ metadata.title }}</title>
|
|
<link>{{ permalink | absoluteUrl(metadata.url) }}</link>
|
|
<atom:link href="{{ permalink | absoluteUrl(metadata.url) }}" rel="self" type="application/rss+xml" />
|
|
<description>{{ metadata.description }}</description>
|
|
<language>{{ metadata.language }}</language>
|
|
<lastBuildDate>{{ page.date | dateToRfc822 }}</lastBuildDate>
|
|
<image>
|
|
<url>{{ '/apple-touch-icon.png' | absoluteUrl(metadata.url) }}</url>
|
|
<title>{{ metadata.title }}</title>
|
|
<link>{{ permalink | absoluteUrl(metadata.url) }}</link>
|
|
</image>
|
|
|
|
{%- for item in collections.feed | reverse -%}
|
|
<item>
|
|
<title>{{ item.data.title }}</title>
|
|
<link>{{ item.data.relativeUrl | absoluteUrl(metadata.url)}}</link>
|
|
<pubDate>{{ item.date | stringToDate | dateToRfc822 }}</pubDate>
|
|
<guid isPermaLink="false">{{ item.date | stringToDate | dateToRfc822 }}</guid>
|
|
<description>{{ item.templateContent | htmlToAbsoluteUrls(metadata.url) }}</description>
|
|
</item>
|
|
|
|
{%- endfor -%}
|
|
</channel>
|
|
</rss>
|