fix broken key
This commit is contained in:
parent
9e57bb6635
commit
5579a70f81
19
alink47.xml
19
alink47.xml
|
@ -7,19 +7,20 @@
|
||||||
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
|
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
|
||||||
>
|
>
|
||||||
<channel>
|
<channel>
|
||||||
<title>LinkPistol</title>
|
<title>{{ site.title | xml_escape }}</title>
|
||||||
<description>Blasting out the good stuff, one link at the time</description>
|
<description>{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description>
|
||||||
<sy:updatePeriod>{{ site.feed_update_period | default: "daily" | xml_escape }}</sy:updatePeriod>
|
<sy:updatePeriod>{{ site.feed_update_period | default: "daily" | xml_escape }}</sy:updatePeriod>
|
||||||
<sy:updateFrequency>6</sy:updateFrequency>
|
<sy:updateFrequency>{{ site.feed_update_frequency | default: 1 | xml_escape }}</sy:updateFrequency>
|
||||||
<link>{{ site.url }}/alink47.xml</link>
|
<link>{{ site.url }}/wim.xml</link>
|
||||||
<atom:link href="{{ site.url }}/{{ page.path }}" rel="self" type="application/rss+xml" />
|
<atom:link href="{{ site.url }}/{{ page.path }}" rel="self" type="application/rss+xml" />
|
||||||
<lastBuildDate>{{ site.time | date_to_xmlschema }}</lastBuildDate>
|
<lastBuildDate>{{ site.time | date_to_xmlschema }}</lastBuildDate>
|
||||||
{% assign feed_items = site.feed_items | default: 10 %}{% for item in site.data.alink47.alink47 reversed %}{% assign sitetimexml = site.time | date: "%s" %}{% assign now = item.date | date: "%s" %}{% if now <= sitetimexml %}
|
{% assign sections_sorted = site.data.alink47.alink-47 | sort: 'date' %}{% for post in sections_sorted reversed %}{% assign sitetimexml = site.time | date: "%s" %}{% assign now = post.date | date: "%s" %}{% if now <= sitetimexml %}
|
||||||
<item>
|
<item>
|
||||||
<title>{{ item.name | xml_escape }}</title>
|
<title>{{ post.name | xml_escape }}</title>
|
||||||
<description>{{ item.content | xml_escape }}</description>
|
{% if post.author.name %}<dc:creator>{{ post.author.name | xml_escape }}</dc:creator>{% endif %}
|
||||||
<pubDate>{{ item.date | date_to_xmlschema }}</pubDate>
|
{% if post.excerpt %}<description>{{ post.excerpt | xml_escape }}</description>{% else %}<description>{{ post.content | xml_escape }}</description>{% endif %}
|
||||||
<link>{{ item.link }}</link>
|
<pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
|
||||||
|
<link>{{ post.link | xml_escape }}</link>
|
||||||
<guid isPermaLink="false">{{ now }}</guid>
|
<guid isPermaLink="false">{{ now }}</guid>
|
||||||
</item>{% endif %}{% endfor %}
|
</item>{% endif %}{% endfor %}
|
||||||
</channel>
|
</channel>
|
||||||
|
|
Loading…
Reference in a new issue