findcommonground.uk/index.html

24 lines
535 B
HTML
Raw Normal View History

2014-02-07 00:18:00 +00:00
---
layout: default
---
2014-02-07 13:45:09 +00:00
<ul class="posts">
{% for post in site.posts %}
<li>
<article class="post">
<header>
<time datetime="{{ post.date }}">{{ post.date | date: "%m.%d.%Y" }}</time>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
</header>
2014-02-07 00:18:00 +00:00
2014-02-07 13:45:09 +00:00
<div class="entry">
{{ post.content | truncatewords:85}}
2014-02-07 00:18:00 +00:00
2014-02-07 13:45:09 +00:00
<p class="read-more">
<a href="{{ post.url }}">Read more</a>
</p>
</div>
</article>
</li>
{% endfor %}
</ul>