forked from ePages-de/epages-devportal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.xml
More file actions
19 lines (18 loc) · 704 Bytes
/
feed.xml
File metadata and controls
19 lines (18 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
layout: none
permalink: /blog/feed.xml
---
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<link href="{{ site.url }}/blog/feed.xml" rel="self" type="application/atom+xml" />
<link href="{{ site.url }}" rel="alternate" type="text/html" />
<updated>{{ "now" | date: "%Y-%m-%dT%H:%M:%S%:z" }}</updated>
<id>{{ site.url }}/blog/feed.xml</id>
<title type="html">{{ site.title }}</title>
{% for post in site.posts limit:10 %}
<entry>
<title type="html">{{ post.title | xml_escape }}</title>
<link href="{{ site.url }}{{ post.url }}" rel="alternate" type="text/html" title="{{ post.title | xml_escape }}"/>
</entry>
{% endfor %}
</feed>