findcommonground.uk/index.html

17 lines
331 B
HTML
Raw Normal View History

2014-02-07 00:18:00 +00:00
---
layout: default
---
2014-02-11 14:11:56 +00:00
<div class="posts">
2014-02-07 13:45:09 +00:00
{% for post in site.posts %}
2014-02-11 14:11:56 +00:00
<article class="post">
<header>
2014-02-13 01:42:49 +00:00
<h1>{{ post.title }}</h1>
2014-02-11 14:11:56 +00:00
</header>
2014-02-07 00:18:00 +00:00
2014-02-13 01:42:49 +00:00
<div class="entry">{{ post.content | truncatewords:40}}</div>
2014-02-11 14:11:56 +00:00
2014-02-13 01:42:49 +00:00
<a href="{{ post.url }}" class="read-more">Read More</a>
2014-02-11 14:11:56 +00:00
</article>
2014-02-07 13:45:09 +00:00
{% endfor %}
2014-02-11 14:11:56 +00:00
</div>