From 77ffc8dfeabd45cb3fac500902fcbcb7176edcc7 Mon Sep 17 00:00:00 2001 From: sefidel Date: Sun, 26 Mar 2023 16:55:25 +0900 Subject: project: Initial commit --- templates/page.html | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 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..cef35d9 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,44 @@ +{% extends "base.html" %} + +{% block html_title %}{{ page.title }} | {{ config.title }}{% endblock html_title %} + +{% block content %} +
+
+

+ {{ page.title }} +

+ {% if not page.extra.raw %} + + {% endif %} +
+ {% if page.toc and not page.extra.no_toc %} +

Table of Contents

+ + {% endif %} + {{ page.content | safe }} + {% if not page.extra.raw %} + + {% endif %} +
+{% endblock content %} -- cgit 1.4.1