tale/index.html

19 lines
381 B
HTML
Raw Normal View History

---
layout: default
title: Home
---
2017-03-11 05:09:18 +00:00
{% for post in site.posts %}
<div class="post-preview">
<time datetime="{{ post.date }}">{{ post.date | date_to_string }}</time>
2017-03-11 05:09:18 +00:00
<h1>{{ post.title }}</h1>
<p>{{ post.content | truncatewords: 70 | strip_html }}</p>
2017-03-11 05:09:18 +00:00
<div class="post-link">
<a href="{{ post.url }}">continue reading</a>
</div>
</div>
{% endfor %}