layout: default bodyClass: home


{{ content }}

{% assign num_posts = site.posts | size %}

{% if num_posts > 0 %}

<section class="news">
  <h2 class="section-title">News</h2>

  <div class="items">
    {% for post in site.posts %}
      {% include newsroll-entry.html %}
    {% endfor %}
  </div>
</section>

{% endif %}