summaryrefslogtreecommitdiffstats
path: root/templates/post.html
blob: 0dd3bbb4f81cb7758944176b60e0545a203ba59d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% import "macros.html" as macros -%}
{% extends "index.html" %}
{% block content %}
  <header>
    <h1 id="title">{{ page.title }}</h1>
    {% if page.date %}
      <time datetime="{{ page.date | date(format="%Y-%m-%d") }}">
        {{ page.date | date(format="%d %b %Y") }}
      </time>
    {% endif %}
  </header>
  {{ macros::toc(page=page) }}
  {{ page.content | safe }}
{% endblock content %}