fix order
This commit is contained in:
parent
49c64fe2dc
commit
7c4ad562c3
2
wim.xml
2
wim.xml
|
@ -14,7 +14,7 @@
|
||||||
<link>{{ site.url }}/wim.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 post in site.data.wim.wim reversed limit:10 %}{% assign sitetimexml = site.time | date: "%s" %}{% assign now = post.date | date: "%s" %}{% if now <= sitetimexml %}
|
{% assign feed_items = site.feed_items | default: 10 %}{% for post in site.data.wim.wim limit:10 %}{% assign sitetimexml = site.time | date: "%s" %}{% assign now = post.date | date: "%s" %}{% if now <= sitetimexml %}
|
||||||
<item>
|
<item>
|
||||||
<title>{{ post.name | xml_escape }}</title>
|
<title>{{ post.name | xml_escape }}</title>
|
||||||
{% if post.author.name %}<dc:creator>{{ post.author.name | xml_escape }}</dc:creator>{% endif %}
|
{% if post.author.name %}<dc:creator>{{ post.author.name | xml_escape }}</dc:creator>{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue