site/templates/project-page.html
2022-07-22 21:31:09 -05:00

16 lines
226 B
HTML

{% extends "base.html" %}
{% block title %}{{page.title}}{% endblock title %}
{% block content %}
<h1>
{{ page.title }}
</h1>
<p>
<strong>
{{ page.date }}
</strong>
</p>
{{ page.content | safe }}
{% endblock content %}