layout: default


<section class=“items”>

{% if site.is_hub %}
  {% include assets/symbol.svg %}
{% endif %}

{% for item in site.posts_combined %}
  {% if forloop.first %}
    {% assign can_be_featured = true %}
  {% else %}
    {% assign can_be_featured = false %}
  {% endif %}

  {% include post-card.html post=item can_be_featured=can_be_featured %}
{% endfor %}

</section>