blob: cd9785e47bcb242e3dac22094b3a4e84ad6a9d1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
<div class="blog-content">
{{ page.content | safe }}
</div>
{% endblock content %}
|