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