mirror of
https://github.com/arcan1s/arcanis.me.git
synced 2025-04-24 15:27:17 +00:00
25 lines
913 B
XML
25 lines
913 B
XML
---
|
|
layout: none
|
|
---
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>{{ site.name | xml_escape }}</title>
|
|
<link>{{ site.url }}ru</link>
|
|
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
|
|
{% for post in site.categories.en limit:10 %}
|
|
{% if post.tags contains 'offtop' %}
|
|
<!-- do nothing -->
|
|
{% else %}
|
|
<item>
|
|
<title>{{ post.title | xml_escape }}</title>
|
|
<description>{{ post.description | xml_escape }}</description>
|
|
<pubDate>{{ post.date | date_to_string }}</pubDate>
|
|
<link>{{ site.url }}{{ post.url }}</link>
|
|
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
|
|
</item>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|