site/templates/blog-page.html

26 lines
528 B
HTML
Raw Normal View History

2021-11-20 14:52:22 -06:00
{% extends "base.html" %}
2022-07-22 21:31:09 -05:00
{% block title %}{{page.title}}{% endblock title %}
2021-11-20 14:52:22 -06:00
{% block content %}
2023-03-10 21:34:45 -06:00
<div class="text-align-center">
<h1 class="header">
2021-11-20 14:52:22 -06:00
{{ page.title }}
</h1>
2023-03-10 21:34:45 -06:00
{{ page.description }}
</div>
<p class="text-align-right">
<strong><i>
2021-11-20 14:52:22 -06:00
{{ page.date }}
2023-03-10 21:34:45 -06:00
</i></strong>
2021-11-20 14:52:22 -06:00
</p>
{{ page.content | safe }}
2022-08-15 08:46:35 -05:00
<script src="https://utteranc.es/client.js"
repo="karx1/site-comments"
issue-term="pathname"
theme="photon-dark"
crossorigin="anonymous"
async>
</script>
2021-11-20 14:52:22 -06:00
{% endblock content %}