2023-12-07 00:49:33 +01:00
|
|
|
---
|
|
|
|
---
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<rss version="2.0"
|
|
|
|
xmlns:atom="http://www.w3.org/2005/Atom"
|
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
|
|
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
|
|
|
|
>
|
|
|
|
<channel>
|
2023-12-07 00:55:49 +01:00
|
|
|
<title>LinkPistol</title>
|
|
|
|
<description>Blasting out the good stuff, one link at the time</description>
|
2023-12-07 00:49:33 +01:00
|
|
|
<sy:updatePeriod>{{ site.feed_update_period | default: "daily" | xml_escape }}</sy:updatePeriod>
|
2023-12-07 00:55:49 +01:00
|
|
|
<sy:updateFrequency>6</sy:updateFrequency>
|
|
|
|
<link>{{ site.url }}/alink47.xml</link>
|
2023-12-07 00:49:33 +01:00
|
|
|
<atom:link href="{{ site.url }}/{{ page.path }}" rel="self" type="application/rss+xml" />
|
2023-12-07 01:03:30 +01:00
|
|
|
<lastBuildDate>{{ site.time | date_to_xmlschema }}</lastBuildDate>
|
2023-12-07 13:57:59 +01:00
|
|
|
{% assign feed_items = site.feed_items | default: 10 %}{% for item in site.data.alink47.alink47 reversed limit:10 %}{% assign sitetimexml = site.time | date: "%s" %}{% assign now = item.date | date: "%s" %}{% if now <= sitetimexml %}
|
2023-12-07 00:49:33 +01:00
|
|
|
<item>
|
2023-12-07 13:53:21 +01:00
|
|
|
<title>{{ item.name | xml_escape }}</title>
|
|
|
|
<description>{{ item.content | xml_escape }}</description>
|
|
|
|
<pubDate>{{ item.date | date_to_xmlschema }}</pubDate>
|
|
|
|
<link>{{ item.link }}</link>
|
2023-12-07 00:49:33 +01:00
|
|
|
<guid isPermaLink="false">{{ now }}</guid>
|
|
|
|
</item>{% endif %}{% endfor %}
|
|
|
|
</channel>
|
|
|
|
</rss>
|