Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 706 Bytes

File metadata and controls

22 lines (20 loc) · 706 Bytes
layout default
{% for post in site.posts %}
  <div>
    <a href="{{ post.url | prepend: site.baseurl }}" class="post-title-link">
        <h1>{{ post.title }}</h1>
    </a>
    <p class="post-title-author">{{post.post_author}}, <time datetime="{{ post.date }}">{{ post.date | date: "%d %B %Y" }}</time></p>
    <p>
      {{ post.content | truncatewords: 50 | strip_html }}
    </p>
    <div class="post-separator"></div>
  </div>

{% endfor %}