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

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

{% block content %}

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

<hr>
{{ page.content | safe }}
{% endblock content %}