-
Notifications
You must be signed in to change notification settings - Fork 7
/
atom.xml
29 lines (28 loc) · 1.02 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
28
29
---
# https://raw.githubusercontent.com/plusjade/jekyll-bootstrap/master/atom.xml
layout: null
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
<title>Open North Blog</title>
<link rel="self" type="application/atom+xml" href="http://www.opennorth.ca/atom.xml"/>
<link rel="alternate" type="text/html" href="http://www.opennorth.ca"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>tag:www.opennorth.ca,2005:/</id>
<author>
<name>Open North</name>
</author>
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link rel="alternate" type="text/html" href="http://www.opennorth.ca{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<published>{{ post.date | date_to_xmlschema }}</published>
<id>tag:www.opennorth.ca,2005:{{ post.id }}</id>
<author>
<name>{{ post.author }}</name>
</author>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>