We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9d69ab commit bf4d696Copy full SHA for bf4d696
feed.xml
@@ -8,7 +8,9 @@ layout: none
8
<description>{{ site.description | xml_escape }}</description>
9
<link>{{site.url}}{{site.baseurl}}</link>
10
<atom:link href="{{site.url}}{{site.baseurl}}/feed.xml" rel="self" type="application/rss+xml" />
11
- {% for part in site.parts limit:10 %}
+ {% assign limit = 10 %}
12
+ {% assign offset = (site.parts.size | minus: limit) %}
13
+ {% for part in site.parts offset:offset limit:limit %}
14
<item>
15
<title>{{ part.title | xml_escape }}</title>
16
<description>{{ part.content | xml_escape }}</description>
0 commit comments