summaryrefslogtreecommitdiff
path: root/_layouts/post.njk
blob: a36d28df0645b19f4a4ae42954a60ce9ea068ed1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.njk" %}

{% block header %}
<h1>{{ title }}</h1>
{% endblock %}

{% block content %}
  <h1>{{ title }}</h1>
  <div class="post-info">
    <small>{{ page.date | date }}</small>
  </div>
  <div>
    {{ content | safe }}
  </div>
{% endblock %}