summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: a7311de02c07b232176e2e6a721e6e1d7cf040d0 (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
27
28
29
{% include "header.html"  %}

<h1>
<a href=http://blaise.zone>blaise</a>-blog
</h1>

<hr>

<p>
Welcome to my personal blog!
<em>Forever a work-in-progress.</em><br>
This page lists my blog entries in reverse chronological order. <br>
You may also <a href="./tags/">browse by tag</a>. <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>
  {% for tag in post.tags %}
  <a href="./tags/#{{ tag }}" style="color:#b294bb;font-style:italic;">#{{ tag }}</a>
  {% endfor %}
  <br>
{% endfor %}
</p>

{% include "footer.html" %}