Feed updates
This commit is contained in:
parent
28f951f335
commit
1519bc67af
|
@ -2,12 +2,13 @@
|
||||||
generator: [posts_tag_index]
|
generator: [posts_tag_index]
|
||||||
---
|
---
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<rss version="2.0">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>{{ site.title }}</title>
|
<title>{{ site.title }}</title>
|
||||||
<link>{{ site.url }}</link>
|
<link>{{ site.url }}</link>
|
||||||
<language>en</language>
|
<language>en</language>
|
||||||
{% if site.description %}<description>{{ site.description|raw }}</description>{% endif %}
|
{% if site.description %}<description>{{ site.description|raw }}</description>{% endif %}
|
||||||
|
<atom:link href="{{ site.url }}{{ page.url }}" rel="self" type="application/rss+xml" />
|
||||||
{% for post in page.tag_posts|slice(0, 10) %}
|
{% for post in page.tag_posts|slice(0, 10) %}
|
||||||
<item>
|
<item>
|
||||||
<title>{{ post.title }}</title>
|
<title>{{ post.title }}</title>
|
||||||
|
@ -15,6 +16,7 @@ generator: [posts_tag_index]
|
||||||
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
|
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
|
||||||
<pubDate>{{ post.date|date('r') }}</pubDate>
|
<pubDate>{{ post.date|date('r') }}</pubDate>
|
||||||
<description>{{ post.description|raw }}</description>
|
<description>{{ post.description|raw }}</description>
|
||||||
|
<lastBuildDate>{{ site.calculated_date | date('c') }}</lastBuildDate>
|
||||||
</item>
|
</item>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</channel>
|
</channel>
|
||||||
|
|
Loading…
Reference in a new issue