|
|
|
@ -1,13 +1,9 @@
|
|
|
|
|
{% set posts = pageQuery.find({ orderBy: [ '-date_published' ], limit: 10, filter: { view: { _eq: 'post.njk' } } }) %}
|
|
|
|
|
|
|
|
|
|
{% set http = 'http' %}
|
|
|
|
|
|
|
|
|
|
{% if (site.https) %}
|
|
|
|
|
{% set http = 'https' %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<rss version="2.0"
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
|
|
|
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
|
|
|
|
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
|
|
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
|
|
@ -30,25 +26,25 @@
|
|
|
|
|
<sy:updateFrequency>1</sy:updateFrequency>
|
|
|
|
|
<generator>https://gitea.node001.net/HerrHase/siteomat-webpack-plugin</generator>
|
|
|
|
|
{% for post in posts %}
|
|
|
|
|
<item>
|
|
|
|
|
<title>{{ post.title }}</title>
|
|
|
|
|
<link>{{ http }}://{{ site.domain }}{{ post.path }}</link>
|
|
|
|
|
<pubDate>{{ dayjs(post.date_published) }}</pubDate>
|
|
|
|
|
|
|
|
|
|
{% if post.excerpt %}
|
|
|
|
|
<description>
|
|
|
|
|
{{ post.excerpt }}
|
|
|
|
|
</description>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
<content:encoded>
|
|
|
|
|
<![CDATA[
|
|
|
|
|
{{ post.content | safe }}
|
|
|
|
|
]]>
|
|
|
|
|
</content:encoded>
|
|
|
|
|
|
|
|
|
|
<guid>{{ http }}://{{ site.domain }}{{ post.path }}</guid>
|
|
|
|
|
</item>
|
|
|
|
|
<item>
|
|
|
|
|
<title>{{ post.title }}</title>
|
|
|
|
|
<link>{{ http }}://{{ site.domain }}{{ post.path }}</link>
|
|
|
|
|
<pubDate>{{ dayjs(post.date_published) }}</pubDate>
|
|
|
|
|
|
|
|
|
|
{% if post.excerpt %}
|
|
|
|
|
<description>
|
|
|
|
|
{{ post.excerpt }}
|
|
|
|
|
</description>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
<content:encoded>
|
|
|
|
|
<![CDATA[
|
|
|
|
|
{{ post.content | safe }}
|
|
|
|
|
]]>
|
|
|
|
|
</content:encoded>
|
|
|
|
|
|
|
|
|
|
<guid>{{ http }}://{{ site.domain }}{{ post.path }}</guid>
|
|
|
|
|
</item>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</channel>
|
|
|
|
|
</rss>
|