We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6ffdfb commit e4c9f28Copy full SHA for e4c9f28
page_feed.xml
@@ -16,6 +16,7 @@
16
<lastBuildDate>{% for post in site.posts limit:1 %}{{ post.date | date_to_rfc822 }}{% endfor %}</lastBuildDate>
17
{% assign feed_items = site.feed_items | default: 10 %}
18
{% for post in site.pages limit:feed_items %}
19
+ {% if post.url contails ".html" %}
20
<item>
21
<title>{{ post.title | xml_escape }}</title>
22
{% if post.author.name %}
@@ -30,6 +31,8 @@
30
31
<link>{{ site.url }}{{ post.url }}</link>
32
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
33
</item>
34
+ {% endif %}
35
+
36
{% endfor %}
37
</channel>
38
</rss>
0 commit comments