summaryrefslogtreecommitdiffstats
path: root/templates/index.html
blob: 6a64d799f203158673164479d7f8ad83cadb4554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "default.html" %}
{% block content %}
<h1>Welcome</h1>

<p>Welcome, this is my website, an under-maintained infodump. Hopefully you'll find something useful here.</p>

<h2>Recent blogposts:</h2>
<ul class="postlist">{% for post in page.posts %}
  <li>
    <article>
      <header>
        <h3>{{ post.title }}</h3>
      </header>
      {{ post.pre|md }}
      <a href="/{{ post.location }}">Read more...</a>
      <footer>
        <time>{{ post.date|datefmt }}</time>
      </footer>
    </article>
  </li>
{% endfor %}</ul>
{% endblock %}