9 lines
240 B
HTML
9 lines
240 B
HTML
{% extends "base.html" %} {% block content %}
|
|
<h3>{{ page.title }}</h3>
|
|
<article>
|
|
<p>Published on: {{ page.date }}</p>
|
|
<div>
|
|
{{ page.content | safe }}
|
|
</div>
|
|
</article>
|
|
{% endblock content %}
|