From ee4d6a01e16ac53fa3e48340a47455281d5f6bc0 Mon Sep 17 00:00:00 2001 From: sptaule Date: Tue, 25 Jan 2022 15:27:39 +0100 Subject: Organized doc md with metadata & draft for doc template --- templates/documentation.html | 224 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 224 insertions(+) create mode 100644 templates/documentation.html (limited to 'templates') diff --git a/templates/documentation.html b/templates/documentation.html new file mode 100644 index 0000000..7145129 --- /dev/null +++ b/templates/documentation.html @@ -0,0 +1,224 @@ +{% extends 'base.html' %} + +{% block title %} +{{ config.title }} | {{ page.title }} +{% endblock %} + +{% block content %} +{% set section = get_section(path="documentation/_index.md") %} +
+
+ + + +
+
+
+
+

+ {{ page.title }} +

+ {% if page.description %} +

{{ page.description }}

+ {% endif %} +
+
+
+ {{ page.content | safe }} +
+
+
+ + +
+
+{% endblock %} + +{% block pagination %} +{% if page.earlier or page.later or page.lighter or page.heavier %} +
+
+
+
+ +
+
+
+
+{% endif %} +{% endblock %} + +{% block comment %} +{% if page.extra.comments and config.extra.commenting.disqus %} +
+
+
+
+
+
+
+
+
+{% endif %} +{% endblock %} + +{% block custom_js %} +{% if page.extra.toc %} + +{% endif %} + +{% if page.extra.comments and config.extra.commenting.disqus %} + +{% endif %} +{% endblock %} \ No newline at end of file -- cgit v1.2.3