blob: 7a74e3c72c4ea916381cefe08f8bd6c8e57afec9 (
plain)
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
|
{% include "header.html" %}
<h1>
<a href=http://blaise.zone>blaise</a>-blog
</h1>
<hr>
<p>
Welcome to my personal blog! <br>
This page lists my blog entries in reverse chronological order. <br>
You may also browse by tag (coming soon). <br>
You may be interested in my <a href=./meta/>meta</a> post. <br>
Thanks for stopping by! —Blaise
</p>
<p>
{% for post in posts %}
{{ post.date }}
<a href=./{{ post.path }}>{{ post.title }}</a>
<br>
{% endfor %}
</p>
{% include "footer.html" %}
|