-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathatom.xml
27 lines (26 loc) · 1.06 KB
/
atom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: null
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title type="text">We Don't Need Roads</title>
<subtitle type="text">Personal musings of Sam Chaffee</subtitle>
<updated>{% assign recentpost = site.posts | first %}{{ recentpost.date | date: '%Y-%m-%dT%H:%M:%S' }}{{ site.tzoffset }}</updated>
<id>https://blog.samchaffee.com/</id>
<link rel="alternate" type="text/html" hreflang="en" href="https://blog.samchaffee.com/"/>
<link rel="self" type="application/atom+xml" href="https://blog.samchaffee.com/atom.xml"/>
{% for post in site.posts %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link rel="alternate" type="text/html"
href="https://blog.samchaffee.com{{ post.url }}"/>
<id>https://blog.samchaffee.com{{ post.url }}</id>
<updated>{{ post.date | date: '%Y-%m-%dT%H:%M:%S' }}{{ site.tzoffset }}</updated>
<author>
<name>Sam Chaffee</name>
<uri>https://blog.samchaffee.com/</uri>
</author>
<summary>{{ post.description | xml_escape }}</summary>
</entry>
{% endfor %}
</feed>