--- layout: default pagination: enabled: true ---
{% if paginator.page == 1 %} {% for post in site.posts %} {% if forloop.index == 1 %}
{% if post.post_image %} {{post.title}} {% endif %}

{{post.title}}

{{post.excerpt | strip_html | truncatewords: "30" }}

{% endif %} {% endfor %}
{% for post in site.posts limit: "5" %} {% if forloop.index != 1 %}
{% if post.post_image %} {% endif %}

{{post.title}}

{{post.excerpt | strip_html | truncatewords: "30" }}

{% endif %} {% endfor %}
{% for post in site.posts %} {% if forloop.index == 6 %}
{% if post.post_image %} {{post.title}} {% endif %}

{{post.title}}

{{post.excerpt | strip_html | truncatewords: "30" }}

{% endif %} {% endfor %}
{% for post in paginator.posts %} {% if forloop.index > 6 %}
{% if post.post_image %} {% endif %}

{{post.title}}

{{post.excerpt | strip_html | truncatewords: "30" }}

{% endif %} {% endfor %}
{% else %}
{% for post in paginator.posts %}
{% if post.post_image %} {% endif %}

{{post.title}}

{{post.excerpt | strip_html | truncatewords: "30" }}

{% endfor %}
{% endif %}
{% include pagination.html %}
{% include sidebar.html %}
{% include footer_one.html %}