site/templates/project-page.html

14 lines
173 B
HTML
Raw Normal View History

2021-11-09 21:31:32 -06:00
{% extends "base.html" %}
{% block content %}
<h1>
{{ page.title }}
</h1>
<p>
<strong>
{{ page.date }}
</strong>
</p>
{{ page.content | safe }}
{% endblock content %}