Skip to content

Commit c29d92d

Browse files
authored
Merge pull request #37 from front-matter/increase-posts-limit
increase feed.posts_imit to 50
2 parents a082754 + 3a45e26 commit c29d92d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

feed.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ layout: null
5454
{% assign posts = site.posts | where_exp: "post", "post.draft != true" %}
5555
{% endunless %}
5656
{% assign posts = site.posts | sort: "date" | reverse %}
57-
{% assign posts_limit = site.feed.posts_limit | default: 25 %}
57+
{% assign posts_limit = site.feed.posts_limit | default: 50 %}
5858
{% for post in posts limit: posts_limit %}
5959
<entry{% if post.lang %}{{" "}}xml:lang="{{ post.lang }}"{% endif %}>
6060
{% assign post_title = post.title | smartify | strip_html | normalize_whitespace | xml_escape %}

0 commit comments

Comments
 (0)