mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-12 08:48:51 +01:00
Liquid Exception: Liquid error (line 2): Cannot sort a null object. in /github/workspace/_global/Special:***
26 lines
862 B
XML
26 lines
862 B
XML
---
|
|
layout: null
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>{{ site.title }}</title>
|
|
<description>{{ site.description }}</description>
|
|
<link>{{ site.url }}</link>
|
|
{% if site.data.wiki_pages %}
|
|
{% assign wiki_pages = site.data.wiki_pages | sort: 'created' %}
|
|
{% for post in wiki_pages reversed%}
|
|
{% unless post.draft %}
|
|
<item>
|
|
<title>{{ post.title | xml_escape }}</title>
|
|
<description>{{ post.excerpt | strip_html }}</description>
|
|
<pubDate>{{ post.created | date_to_xmlschema }}</pubDate>
|
|
<link>{{ post.url | prepend: site.url}}</link>
|
|
<guid isPermaLink="true">{{ post.url | prepend: site.url }}</guid>
|
|
</item>
|
|
{% endunless %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
</channel>
|
|
</rss>
|