blob: 1d58065a366e1d242b52c9530ca86ff9e7a4fe39 (
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
25
26
|
---
title: other
permalink: /other/
---
# other
here will be some misc stuff
<div class="posts">
{% for post in site.posts %}
<div class="post">
<h2><a href="{{ post.url}}">{{ post.title }}</a></h2>
<small>
<p>{{ post.date | date_to_string }}</p>
{% if post.tags.size > 0 %}
<p>| tags: </p>
{% for tag in post.tags %}
<a href="/tags/{{ tag }}">{{ tag }}</a>
{% endfor %}
{% endif %}
</small>
{{ post.content }}
</div>
{% endfor %}
</div>
|