blob: 90cac9c0730cc63a206406a8f8bbf8b95c462975 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
title: blog
permalink: /blog/
---
# 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 %}
{% include post-preview.html %}
{% endfor %}
</div>
|