{% assign post = site.categories['coverstory'].first %} {% if page.is_post == true %} {% assign post = page %} {% endif %}
{% if post.image != nil %}
{% endif %}
New Articles
{% assign counter = 0 %} {% for post in site.posts limit: 10 %} {% if post.category == "coverstory" %} {% continue %} {% endif %} {% assign counter = counter | plus:1 %} {% if counter > 5 %} {% break %} {% else %}

{{ post.title }}

{{ post.date | date: "%b %e, %Y" | upcase }}
{% if counter < 3 %}
{% if post.excerpt != null %}{{ post.excerpt | markdownify }}{% endif %}
{% endif %}
{% endif %} {% endfor %}