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

{% block title %}{{ page.title }}{% endblock title %}

{% block content %}

<h1 class="title">
  {{ page.title }}
</h1>
<p class="subtitle">
    {{ page.date | date(format="%-d %b %Y") }}
    —
    {% for tag in page.taxonomies.tags %}
    <a href="/tags/{{ tag | safe}}">#{{ tag }}</a>
    {% endfor %}
</p>
{{ page.content | safe }}
{% endblock content %}