aboutsummaryrefslogtreecommitdiff
path: root/templates/page.html
blob: 4a3c86c80a1b3a263aba5dc1819aed9702f9791e (plain)
1
2
3
4
5
6
7
8
9
{% extends "base.html" %}
{% block content %}
{% set post = page %}
<div class="post-container">
  <h2>{{ post.title }}</h2>
  <p class="publish-date">Published on: {{ post.date | date(format="%b %d, %Y %H:%M Zulu") }}</p>
  {{ post.content | safe }}
</div>
{% endblock %}