uninsane/templates/blog-page.html

17 lines
260 B
HTML
Raw Normal View History

{% extends "base.html" %}
2022-04-04 23:42:22 +00:00
{% block breadcrumbs %}
/ <a href="/">home</a> / <a>blog</a>
{% endblock breadcrumbs %}
{% block content %}
2022-04-04 23:42:22 +00:00
2022-04-04 05:03:05 +00:00
<h1>
{{ page.title }}
</h1>
2022-04-04 05:03:05 +00:00
<p><strong>{{ page.date }}</strong></p>
{{ page.content | safe }}
2022-04-04 22:11:17 +00:00
{% endblock content %}