memories/templates/page.html

21 lines
420 B
HTML

{% import "macros/page.html" as page_macros %}
{% extends "index.html" %}
{% block title %}{{ page.date }}{% endblock %}
{% block content %}
<article class="post">
<header>
<h1>{{ page.date }}</h1>
</header>
<div class="page-info">
{{ page_macros::page_info(page=page) }}
</div>
<div class="content">
{{ page.content | safe }}
</div>
</article>
{% endblock content %}