18 lines
350 B
HTML
18 lines
350 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include 'partials/head.html' %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{% include 'partials/site-wide-header.html' %}
|
|
</header>
|
|
<h1>{{page_title}}</h1>
|
|
{{content|safe}}<br/>
|
|
<a href='/edit/{{page_title}}'>Edit Page</a>
|
|
<footer>
|
|
{% include 'partials/site-wide-footer.html' %}
|
|
</footer>
|
|
</body>
|
|
</html>
|