Updates
This commit is contained in:
parent
4baaa95d22
commit
d37b8615a6
|
@ -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>
|
||||||
|
|
Reference in a new issue