{% for item in status %}

<article class="post_list">
  <header>
    <h2>{{ item.title }}</h2>
  </header>
  <section>
    {{ item.content }}
  </section>
  <aside class="post_info material400 small">
    <p><a href="{{ item.url | prepend: site.url }}" {% unless include.underline_links %}class="link"{% endunless %}>posted on {{ item.date | date: '%l:%M %p on %m/%d/%Y' }}</a></p>
  </aside>
</article>

{% endfor %}