{% if site.inc_before_post_list %}
{% include {{ site.inc_before_post_list }} %}
{% endif %}
Posts {% if (site.show_wiki_posts_limit >= 1 %} (Latest {{site.show_wiki_posts_limit
}} updated) {% endif %}:
{% assign numPages=0 %}
{% assign items = site.posts | sort: 'date' %}
{% for post in items %}
{% if numPages >= site.show_wiki_posts_limit %}
{% break %}
{% endif %}
{% if post.layout != "null" and post.sitemap != false and post.title %}
-
{{ post.title | escape }}
{% assign numPages = numPages | plus: 1 %}
{% endif %}
{% endfor %}
Read all
{% if site.inc_after_post_list %}
{% include {{ site.inc_after_post_list }} %}
{% endif %}