-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrss.xml
47 lines (41 loc) · 1.75 KB
/
rss.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
layout: nil
---
<?xml version="1.0"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>alexbilbie.com</title>
<link>http://alexbilbie.com/</link>
<atom:link href="http://alexbilbie.com/rss.xml" rel="self" type="application/rss+xml" />
<description>Posts from alexbilbie.com</description>
<language>en-gb</language>
<pubDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<lastBuildDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</lastBuildDate>
{% for post in site.posts %}
<item>
<title>{% if post.link %}{{ "→" | xml_escape }} {{ post.title | xml_escape }}{% else %}{{ post.title }}{% endif %}</title>
{% if post.link %}
<link href="{{ post.link }}"/>
<guid>{{ post.link }}</guid>
{% else %}
<link href="http://alexbilbie.com{{ post.url }}?utm_source=rss&utm_medium=rss&utm_campaign=rss"/>
<guid>http://alexbilbie.com{{ post.id }}</guid>
{% endif %}
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<author>Alex Bilbie</author>
<description>
{{ post.content | xml_escape }}
{% if page.tags contains "oauth" %}
<hr>
<h3>OAuth and API Consultation</h3>
<p>
If you'd like to hire me to help out with your OAuth or API implementation, or would like some advice or training for you and your team please email me at <a href="mailto:[email protected]">[email protected]</a>.
</p>
{% endif %}
{% capture permalink %}<p><a href="http://alexbilbie.com{{ post.url }}?utm_source=rss&utm_medium=rss&utm_campaign=rss">∞ Permalink</a</p>{% endcapture %}
{{ permalink | xml_escape }}
</description>
</item>
{% endfor %}
</channel>
</rss>