other.md (view raw)
1---
2title: other
3permalink: /other/
4---
5
6# other
7
8here will be some misc stuff
9
10<div class="posts">
11{% for post in site.posts %}
12 <div class="post">
13 <h2><a href="{{ post.url}}">{{ post.title }}</a></h2>
14 <small>
15 <p>{{ post.date | date_to_string }}</p>
16 {% if post.tags.size > 0 %}
17 <p>| tags: </p>
18 {% for tag in post.tags %}
19 <a href="/tags/{{ tag }}">{{ tag }}</a>
20 {% endfor %}
21 {% endif %}
22 </small>
23 {{ post.content }}
24 </div>
25{% endfor %}
26</div>