blob: 66faa93e6ca00a58825e8b059e989d703c2de1fe (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% extends "base.html" %}
{% block content %}
{% set post = page %}
<div class="post-page">
<h2>{{ post.title }}</h2>
<p class="publish-date">{{ post.date }}</p>
<hr>
{{ post.content | safe }}
</div>
{% endblock %}
|