all repos — aaoth.xyz @ 89d1b3e7b1937f665d1d898cd9d9e1076aeddedb

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.excerpt }}
18        <p>
19            <a href="{{ post.url }}">read more...</a>
20        </p>
21        <small><p>{{ post.date | date_to_string }}</p></small>
22    </div>
23{% endfor %}
24</div>