aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/blog.html
blob: b2e2b720b71bbadfafc83ceb12772b2f8646d6b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %} {% block subtitle %}blog - {% endblock %} {% block main %}
<h1>Blog</h1>
<p>Use <code>⌘ F</code> / <code>Ctrl F</code> to search &middot; <a href="/feed.xml">RSS Feed</a></p>
<p>Want to browse by topic instead? Head over to the <a href="/tags/">tags</a> page.</p>
<ul class="post-list">
    {% for post in posts %}
    <li class="post-list-item">
        <time datetime='{{ post.date | strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d") }}</time>
        <a href='{{ url_for("blog", slug=post.slug) }}'>{{ post.title }}</a>
    </li>
    {% endfor %}
</ul>
{% endblock %}