diff options
Diffstat (limited to '_includes/git-wiki')
| -rw-r--r-- | _includes/git-wiki/components/lists/post-list.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/_includes/git-wiki/components/lists/post-list.html b/_includes/git-wiki/components/lists/post-list.html index 5e39359..be1aa35 100644 --- a/_includes/git-wiki/components/lists/post-list.html +++ b/_includes/git-wiki/components/lists/post-list.html @@ -2,12 +2,12 @@ {% include {{ site.inc_before_post_list }} %} {% endif %} -<span class="post-list-title">Posts {% if (site.show_wiki_post_limit >= 1 %} (Latest {{site.show_wiki_post_limit }} updated) {% endif %}:</span> +<span class="post-list-title">Posts {% if (site.show_wiki_posts_limit >= 1 %} (Latest {{site.show_wiki_posts_limit }} updated) {% endif %}:</span> <ul class="post-list"> {% assign numPages=0 %} {% assign items = site.posts | sort: 'date' %} {% for post in items %} -{% if numPages >= site.show_wiki_post_limit %} +{% if numPages >= site.show_wiki_posts_limit %} {% break %} {% endif %} @@ -21,6 +21,8 @@ {% endfor %} </ul> +<span class="post-list read-all"><a href="{{ '/blog/' | relative_url}}">Read all</a></span> + {% if site.inc_after_post_list %} {% include {{ site.inc_after_post_list }} %} {% endif %}
\ No newline at end of file |
