_includes/post-preview.html (view raw)
1<div class="post">
2 <h2 id="{{ post.title | slugify }}">
3 <a href="{{ post.url }}">{{ post.title }}</a>
4 </h2>
5 {{ post.excerpt }}
6 <p>
7 <a href="{{ post.url }}">read more...</a>
8 </p>
9 <small>
10 <p>{{ post.date | date_to_string }} |
11 {% for tag in post.tags %}<a href="/tags/{{tag}}">{{tag}} </a>
12 {% endfor %}
13 </p>
14 </small>
15</div>