From 8c4162aac8637bb94183f9e5742c2413700ac54a Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Mon, 10 Feb 2020 00:22:02 +0000 Subject: [PATCH] Try to get the templating working, but it's being stubborn :-/ --- src/content/index.md | 6 ++++++ src/templates/index.html | 20 ++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/content/index.md create mode 100644 src/templates/index.html diff --git a/src/content/index.md b/src/content/index.md new file mode 100644 index 0000000..b8e78dd --- /dev/null +++ b/src/content/index.md @@ -0,0 +1,6 @@ ++++ +title = "Pepperminty Wiki" +description = "A wiki in a box" ++++ + +This is some test text diff --git a/src/templates/index.html b/src/templates/index.html new file mode 100644 index 0000000..34ae902 --- /dev/null +++ b/src/templates/index.html @@ -0,0 +1,20 @@ + + + + + {% block title %}{{ config.title }}{% endblock title %} + + + +
+ {% block content %} + + {{ __tera_context }} + + {{ }} + + {% endblock content %} +
+ + +