|
@@ -2,7 +2,7 @@ |
|
|
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"> |
|
|
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"> |
|
|
<channel> |
|
|
<channel> |
|
|
<title>{{ config.title }}</title> |
|
|
<title>{{ config.title }}</title> |
|
|
<link>{{ config.base_url | safe | urlencode | safe }}</link> |
|
|
|
|
|
|
|
|
<link>{{ config.base_url | urlencode | safe }}</link> |
|
|
<description>{{ config.description }}</description> |
|
|
<description>{{ config.description }}</description> |
|
|
<generator>Zola</generator> |
|
|
<generator>Zola</generator> |
|
|
<language>{{ config.default_language }}</language> |
|
|
<language>{{ config.default_language }}</language> |
|
@@ -12,8 +12,8 @@ |
|
|
<item> |
|
|
<item> |
|
|
<title>{{ page.title }}</title> |
|
|
<title>{{ page.title }}</title> |
|
|
<pubDate>{{ page.date | date(format="%a, %d %b %Y %H:%M:%S %z") }}</pubDate> |
|
|
<pubDate>{{ page.date | date(format="%a, %d %b %Y %H:%M:%S %z") }}</pubDate> |
|
|
<link>{{ page.permalink | safe | urlencode | safe }}</link> |
|
|
|
|
|
<guid>{{ page.permalink | safe | urlencode | safe }}</guid> |
|
|
|
|
|
|
|
|
<link>{{ page.permalink | urlencode | safe }}</link> |
|
|
|
|
|
<guid>{{ page.permalink | urlencode | safe }}</guid> |
|
|
<description>{% if page.summary %}{{ page.summary }}{% else %}{{ page.content }}{% endif %}</description> |
|
|
<description>{% if page.summary %}{{ page.summary }}{% else %}{{ page.content }}{% endif %}</description> |
|
|
</item> |
|
|
</item> |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|