11 lines
241 B
HTML
11 lines
241 B
HTML
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="post">
|
||
|
<h1 class="post-title">{{ page.title }}</h1>
|
||
|
<h2 class="post-date">{{ page.date | date(format="%Y-%m-%d") }}</h2>
|
||
|
{{ page.content | safe }}
|
||
|
</div>
|
||
|
|
||
|
{% endblock content %}
|