This commit is contained in:
Oliver Davies 2015-04-17 18:06:38 +01:00
parent 4baaa95d22
commit d37b8615a6

View file

@ -6,13 +6,15 @@ generator: [posts_tag_index]
<channel> <channel>
<title>{{ site.title }}</title> <title>{{ site.title }}</title>
<link>{{ site.url }}</link> <link>{{ site.url }}</link>
<language>en</language>
{% if site.description %}<description>{{ site.description|raw }}</description>{% endif %} {% if site.description %}<description>{{ site.description|raw }}</description>{% endif %}
{% 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>
<link>{{ site.url }}{{ post.url }}</link> <link isPermalink="true">{{ site.url }}{{ post.url }}</link>
<pubDate>{{ post.date|date('r') }}</pubDate> <pubDate>{{ post.date|date('r') }}</pubDate>
{% if post.description %}<description>{{ post.description|raw }}</description>{% endif %} <description>{{ post.description|raw }}</description>
<lastBuildDate></lastBuildDate>
</item> </item>
{% endfor %} {% endfor %}
</channel> </channel>