-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtweetfeed.xml
More file actions
executable file
·37 lines (36 loc) · 1.42 KB
/
tweetfeed.xml
File metadata and controls
executable file
·37 lines (36 loc) · 1.42 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
37
---
layout: none
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
<title type="text">{{ site.name }}</title>
<generator uri="https://github.com/mojombo/jekyll">Jekyll</generator>
<link rel="self" type="application/atom+xml" href="{{ site.url }}/feed.xml" />
<link rel="alternate" type="text/html" href="{{ site.url }}" />
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.url }}/</id>
<author>
<name>{{ site.author }}</name>
<uri>{{ site.url }}/</uri>
<email>{{ site.email }}</email>
</author>
{% for post in site.posts limit:20 %}
{% if post.tweet %}
<entry>
<title type="text">{{ post.tweet }}</title>
<link href="{% if post.link %}{{ post.link }}{% else %}{{ site.url }}{{ post.url }}{% endif %}"/>
<id>{{ site.url }}{{ post.id }}</id>
{% if post.modified %}<updated>{{ post.modified | to_xmlschema }}T00:00:00-00:00</updated>
<published>{{ post.date | date_to_xmlschema }}</published>
{% else %}<published>{{ post.date | date_to_xmlschema }}</published>
<updated>{{ post.date | date_to_xmlschema }}</updated>{% endif %}
<author>
<name>{{ site.author }}</name>
<uri>{{ site.url }}</uri>
<email>{{ site.email }}</email>
</author>
<content type="html">See full post content at <a href="{% if post.link %}{{ post.link }}{% else %}{{ site.url }}{{ post.url }}{% endif %}">CalebHicks.com</a></content>
</entry>
{% endif %}
{% endfor %}
</feed>