-
Notifications
You must be signed in to change notification settings - Fork 560
/
Copy pathfeed.xml
23 lines (23 loc) · 916 Bytes
/
feed.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title type="text" xml:lang="en">Machine Learning cơ bản</title>
<link type="application/atom+xml" href="{{ site.url }}/feed.xml" rel="self"/>
<link type="text/html" href="{{ site.url }}" rel="alternate"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.url }}</id>
<author>
<name>Tiep Vu</name>
</author>
{% for post in site.posts limit:60 %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link href="{{ site.url }}{{ post.url }}"/>
<published>{{ post.date | date: '%Y-%m-%d' }}</published>
<updated>{% if post.updated %}{{ post.updated | date: '%Y-%m-%d' }}{% else %}{{ post.date | date: '%Y-%m-%d' }}{% endif %}</updated>
<id>{{ site.url }}{{ post.url }}</id>
<content type="text">{{ post.description }}</content>
</entry>
{% endfor %}
</feed>