uninsane/templates/blog-page.html
Colin 31773d1623 style: tune colors
generally, make them less intense/varied
2022-04-05 08:10:00 +00:00

17 lines
258 B
HTML

{% extends "base.html" %}
{% block breadcrumbs %}
/ <a href="/">home</a> / <a>blog</a>
{% endblock breadcrumbs %}
{% block content %}
<h1>
{{ page.title }}
</h1>
<p><strong>{{ page.date }}</strong></p>
{{ page.content | safe }}
{% endblock content %}