msgflo
Version:
Polyglot FBP runtime based on message queues
28 lines (27 loc) • 981 B
HTML
---
---
<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>
<language>{{ site.language }}</language>
<lastBuildDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</lastBuildDate>
{% for post in site.posts limit: 10 %}
<item>
<title>{{ post.title }}</title>
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
{% if post.isBasedOnUrl %}
<link>{{ post.isBasedOnUrl }}</link>
<guid isPermaLink="true">{{ post.isBasedOnUrl }}</guid>
{% else %}
<link>{{ site.url }}{{ post.url }}</link>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
{% endif %}
<author>{{ postt.author }}</author>
</item>
{% endfor %}
</channel>
</rss>