blob: 67a7d5d33ef53f30eec0804425612ecff49c0b49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---
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.excerpt }}
<p>
<a href="{{ post.url }}">read more...</a>
</p>
<small><p>{{ post.date | date_to_string }}</p></small>
</div>
{% endfor %}
</div>
|