all repos — aaoth.xyz @ 2392970c8269bbcc06e2ed4e44e69f417ce71676

aaoth.xyz website

other.md (view raw)

 1---
 2title: other
 3permalink: /other/
 4---
 5
 6miscellaneous posts about different things.
 7
 8filter by tag: {% for tag in site.tags %}[{{ tag[0] }}](/tags/{{ tag[0] }})
 9{% endfor %}
10
11<div class="posts">
12{% for post in site.posts %}
13    <div class="post">
14        <h2 id="{{ post.title | slugify }}">
15            <a href="{{ post.url}}">{{ post.title }}</a>
16        </h2>
17        {{ post.content }}
18        <small><p>{{ post.date | date_to_string }}</p></small>
19    </div>
20{% endfor %}
21</div>