Skip to content
Snippets Groups Projects
posts.html 358 B
---
title: Posts
---
<h1>Latest posts from our members</h1>

<div class="container">
{% for post in site.posts %}
  <a href="{{ post.url }}" class="post-box">
    <p>{{ post.date | date_to_string }} <span class="sticker">{{ post.category }}</span></p>
    <h2>{{ post.title }}</h2>
    <p>{{ post.excerpt }} <b>Read more...</b></p>
  </a>
{% endfor %}
</div>