From 63a5afda03daefb45e061a055685335207f21b60 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sat, 27 Apr 2024 17:01:13 -0500 Subject: test conversion back to markdown --- templates/page.html | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 templates/page.html (limited to 'templates/page.html') diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..b858d1a --- /dev/null +++ b/templates/page.html @@ -0,0 +1,51 @@ +{% extends "base.html" %} + +{% block title %} +{{ page.title }} | cleberg.net +{% endblock %} + +{% block css %} + + + +{% endblock css %} + +{% block content %} +
+

{{ page.title }}

+ {% if page.date %} +

+ {% endif %} + {% if page.updated %} +

Last Updated:

+ {% endif %} +

{{ page.word_count }} words; {{ page.reading_time }} minute(s)

+{% if page.toc %} +
+ Table of Contents + +
+{% endif %} +
+ +
+{{ page.content | safe }} +
+{% endblock content %} -- cgit v1.2.3