summaryrefslogtreecommitdiff
path: root/theme/templates/articles.html
blob: 07085a1525f64d38c74698716fff6320ff8e6a1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}

{% block main %}
  <h1>Articles</h1>

  <ul class="posts">
    {% for post in posts %}
      <li class="post-title">
        <a href="{{ url_for("pages", slug=post.slug) }}">
          {% if post.date is defined %}
            {{ post.date|strftime("%b %d, %Y") }} &mdash;
          {% endif %}
          {{ post.title }}
        </a>
      </li>
    {% endfor %}
  </ul>
{% endblock %}