uninsane/templates/blog-page.html

25 lines
475 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 title %}
{{ page.title }}
{% endblock title %}
{% block head %}
<meta name="description" content="{{ page.description }} ({{ page.content | wordcount }} words)">
{% endblock head %}
{% block content %}
2022-04-04 23:42:22 +00:00
2022-04-04 05:03:05 +00:00
<h1>
{{ page.title }}
</h1>
2022-04-05 22:18:18 +00:00
<p class="date">{{ page.date | date(format="%Y/%m/%d") }}</p>
2022-04-04 05:03:05 +00:00
{{ page.content | safe }}
2022-04-04 22:11:17 +00:00
{% endblock content %}