forked from rknightuk/app-defaults
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.njk
More file actions
24 lines (24 loc) · 708 Bytes
/
feed.njk
File metadata and controls
24 lines (24 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
permalink: feed.xml
eleventyExcludeFromCollections: true
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>App Defaults</title>
<link href="https://defaults.rknight.me/feed.xml" rel="self"/>
<link href="https://defaults.rknight.me"/>
<id>defaults.rknight.me</id>
<author>
<name>Hemispheric Views × Robb Knight</name>
<email></email>
</author>
{%- for site in sites.reverse() %}
<entry>
<title>{{ site.name }}</title>
<link href="{{ site.url }}"/>
<updated>{{ site.date }}</updated>
<id>{{ site.url }}</id>
<content type="html"><a href="{{ site.url }}">{{ site.url }}</a></content>
</entry>
{%- endfor %}
</feed>