forked from nishant8BITS/rowanmanning.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.xml
More file actions
36 lines (33 loc) · 1.26 KB
/
Copy pathblog.xml
File metadata and controls
36 lines (33 loc) · 1.26 KB
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
30
31
32
33
34
35
36
---
layout:
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
<title>Rowan Manning's Blog</title>
<link href="http://rowanmanning.com{{ page.url }}" rel="self"/>
<link href="http://rowanmanning.com/"/>
<updated>{{ site.time | date: '%Y-%m-%dT%H:%M:%SZ' }}</updated>
<id>http://rowanmanning.com{{ page.url }}</id>
<author>
<name>Rowan Manning</name>
<uri>http://rowanmanning.com/</uri>
</author>
{% for post in site.posts %}
{% if post.sitemap != false %}
<entry>
<title>{{ post.title }}</title>
<link href="http://rowanmanning.com{{ post.url }}"/>
<published>{{ post.date | date: '%Y-%m-%dT%H:%M:%SZ' }}</published>
<updated>
{% if post.lastmod %}
{{ post.lastmod | date: '%Y-%m-%dT%H:%M:%SZ' }}
{% else %}
{{ post.date | date: '%Y-%m-%dT%H:%M:%SZ' }}
{% endif %}
</updated>
<id>http://rowanmanning.com{{ post.url }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endif %}
{% endfor %}
</feed>