aboutsummaryrefslogtreecommitdiffstats
path: root/_includes/post-preview.html
blob: 53ed59d2d94e147e0787fb1ca35a8848ac1cdb68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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>
        <p>{{ post.date | date_to_string }} |
        {% for tag in post.tags %}<a href="/tags/{{tag}}">{{tag}} </a>
        {% endfor %}
        </p>
    </small>
</div>