diff --git a/alink47.xml b/alink47.xml index a57bb33..44c39fc 100644 --- a/alink47.xml +++ b/alink47.xml @@ -7,19 +7,20 @@ xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" > - LinkPistol - Blasting out the good stuff, one link at the time + {{ site.title | xml_escape }} + {% if site.description %}{{ site.description | xml_escape }}{% endif %} {{ site.feed_update_period | default: "daily" | xml_escape }} - 6 - {{ site.url }}/alink47.xml + {{ site.feed_update_frequency | default: 1 | xml_escape }} + {{ site.url }}/wim.xml {{ site.time | date_to_xmlschema }} - {% 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.name | xml_escape }} - {{ item.content | xml_escape }} - {{ item.date | date_to_xmlschema }} - {{ item.link }} + {{ post.name | xml_escape }} + {% if post.author.name %}{{ post.author.name | xml_escape }}{% endif %} + {% if post.excerpt %}{{ post.excerpt | xml_escape }}{% else %}{{ post.content | xml_escape }}{% endif %} + {{ post.date | date_to_xmlschema }} + {{ post.link | xml_escape }} {{ now }} {% endif %}{% endfor %}