uninsane/templates/blog-page.html

15 lines
252 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
2022-04-04 05:03:05 +00:00
<div>
<span id="tile-slash" style="font-size: 1.6em; opacity: 55%;">/</span>
</div>
<h1>
{{ page.title }}
</h1>
2022-04-04 05:03:05 +00:00
<p><strong>{{ page.date }}</strong></p>
{{ page.content | safe }}
{% endblock content %}