other.md (view raw)
1---
2title: other
3---
4
5miscellaneous posts about different things.
6
7filter by tag: {% for tag in site.tags %}[{{ tag[0] }}](/tags/{{ tag[0] }})
8{% endfor %}
9
10<div class="posts">
11{% for post in site.posts %}
12 <div class="post">
13 <h2 id="{{ post.title | slugify }}">
14 <a href="{{ post.url}}">{{ post.title }}</a>
15 </h2>
16 {{ post.content }}
17 <small><p>{{ post.date | date_to_string }}</p></small>
18 </div>
19{% endfor %}
20</div>