blob: 74e25f639f1b58d28272aadb37b7a529c6be8033 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
title: other
permalink: /other/
---
# other
here will be some misc stuff
<div class="posts">
{% for post in site.posts %}
<div class="post">
{{ post.content }}
<a href="{{ post.url }}">{{ post.date | date_to_string }}</a>
</div>
{% endfor %}
</div>
|