--- title: "Mundana Free Jekyll Theme" layout: default pagination: enabled: true description: "A great Jekyll theme developed by Sal @wowthemesnet." ---
{% if page.url == "/" %}
{% assign latest_post = site.posts[0] %}

{{ latest_post.title }}

{{ latest_post.excerpt | strip_html | strip_newlines | truncate: 136 }}

In {% for category in latest_post.categories %} {{ category }}, {% endfor %} {{ latest_post.date | date: '%b %d, %Y' }}
{%- assign second_post = site.posts[1] -%}
{% if second_post.image %} {% endif %}

{{ second_post.title }}

In {% for category in second_post.categories %} {{ category }}, {% endfor %} {{ second_post.date | date: '%b %d, %Y' }}
{%- assign third_post = site.posts[2] -%}
{% if third_post.image %} {% endif %}

{{ third_post.title }}

In {% for category in third_post.categories %} {{ category }}, {% endfor %} {{ third_post.date | date: '%b %d, %Y' }}
{%- assign fourth_post = site.posts[3] -%}
{% if fourth_post.image %} {% endif %}

{{ fourth_post.title }}

In {% for category in fourth_post.categories %} {{ category }}, {% endfor %} {{ fourth_post.date | date: '%b %d, %Y' }}
{% for post in site.posts %} {% if post.tags contains "sticky" %}

{{post.title}}

{{ post.excerpt | strip_html | strip_newlines | truncate: 136 }}

Read More
{% endif %} {% endfor %} {% endif %}

All Stories

{% for post in paginator.posts %} {% include main-loop-card.html %} {% endfor %}
{% if paginator.total_pages > 1 %}
    {% if paginator.previous_page %}
  • « Prev
  • {% else %}
  • «
  • {% endif %} {% for page in (1..paginator.total_pages) %} {% if page == paginator.page %}
  • {{ page }}
  • {% elsif page == 1 %}
  • {{ page }}
  • {% else %}
  • {{ page }}
  • {% endif %} {% endfor %} {% if paginator.next_page %}
  • Next »
  • {% else %}
  • »
  • {% endif %}
{% endif %}
{% include sidebar-featured.html %}