aboutsummaryrefslogtreecommitdiffstats
path: root/other.md
blob: 8d1b713a1fce4cceed98cf87049de866b905dc9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
title: other
permalink: /other/
---

# miscellaneous posts

about different things

filter by tag: {% for tag in site.tags %}[{{ tag[0] }}](/tags/{{ tag[0] }})
{% endfor %}

<div class="posts">
{% for post in site.posts %}
    <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 }}</p></small>
    </div>
{% endfor %}
</div>