site/templates/project-page.html

17 lines
308 B
HTML
Raw Normal View History

2021-11-09 21:31:32 -06:00
{% extends "base.html" %}
2022-07-22 21:31:09 -05:00
{% block title %}{{page.title}}{% endblock title %}
2021-11-09 21:31:32 -06:00
{% block content %}
2023-03-10 21:34:45 -06:00
<div class="text-align-center">
<h1 class="header">{{ page.title }}</h1>
{{ page.description }}
</div>
2021-11-09 21:31:32 -06:00
<p>
<strong>
{{ page.date }}
</strong>
</p>
{{ page.content | safe }}
{% endblock content %}