--- layout: default --- {% assign stickyPosts = site.posts | where: "sticky", true %} {% assign nonStickyPosts = site.posts | where: "sticky", false %} {% assign allPosts = "" | split: "" %} {% for post in stickyPosts %} {% assign allPosts = allPosts | push: post %} {% endfor %} {% for post in nonStickyPosts %} {% assign allPosts = allPosts | push: post %} {% endfor %} {% for post in allPosts %}
{% if post.image %} {{post.title}} {% else %} {% endif %}

{{ post.title }}

{{ post.verticals | join: ", " }}
{{ post.date | date: "%b %-d, %Y" }}
{{ post.excerpt | strip_html }}
{% endfor %}