blob: b4d025e500773a35a96c4f1c2146196e58628cc3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
title: 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>
|