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