blob: 7240f5b18f8bf4359613ddadc874a962225e24bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
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.content }}
<small><p>{{ post.date | date_to_string }}</p></small>
</div>
{% endfor %}
</div>
|