-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.xml
More file actions
31 lines (28 loc) · 1.31 KB
/
feed.xml
File metadata and controls
31 lines (28 loc) · 1.31 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
---
layout: null
title : Atom Feed
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="https://www.w3.org/2005/Atom">
<link rel="hub" href="https://pubsubhubbub.appspot.com" />
<title type="text" xml:lang="en">{{ site.name }}</title>
<link type="application/atom+xml" href="https://app.xlivewallpaper.com/atom.xml" rel="self"/>
<link href="https://app.xlivewallpaper.com/"/>
<updated>{{ site.time | date: "%Y-%m-%dT%H:%M:%SZ" }}</updated>
<id>https://app.xlivewallpaper.com/</id>
<author>
<name>{{ site.author.name }}</name>
<email>{{ site.author.email }}</email>
</author>
<rights type="text">Copyright © {{ site.time | date: "%Y" }} {{ site.author }}. All rights reserved.</rights>
{% for post in site.posts limit:50 %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link rel="alternate" type="text/html" href="https://app.xlivewallpaper.com{{ post.url }}/?utm_source=RSS&utm_medium=RSS&utm_campaign={{ post.title | replace: ',','' | replace: ' ', '' | xml_escape }}" />
<published>{{ post.date | date: "%Y-%m-%dT%H:%M:%SZ" }}</published>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>https://app.xlivewallpaper.com{{ post.id }}</id>
<content type="html"><![CDATA[ {{ post.content | markdownify }} ]]></content>
</entry>
{% endfor %}
</feed>