From bd24273d096399b96a88574a0033db03739a8d6c Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Thu, 24 Oct 2024 23:47:45 +0200 Subject: official initial commit --- templates/index.html.j2 | 4 ++++ templates/template.html.j2 | 15 +++++++++++++++ templates/thoughts.html.j2 | 5 +++++ 3 files changed, 24 insertions(+) create mode 100644 templates/index.html.j2 create mode 100644 templates/template.html.j2 create mode 100644 templates/thoughts.html.j2 (limited to 'templates') diff --git a/templates/index.html.j2 b/templates/index.html.j2 new file mode 100644 index 0000000..8257ab2 --- /dev/null +++ b/templates/index.html.j2 @@ -0,0 +1,4 @@ +{% extends "template.html.j2" %} +{% block content %} + {{ content }} +{% endblock %} diff --git a/templates/template.html.j2 b/templates/template.html.j2 new file mode 100644 index 0000000..96f7f9d --- /dev/null +++ b/templates/template.html.j2 @@ -0,0 +1,15 @@ + + + + + {{ title }} + + +
+
+ {% block content %} + {% endblock %} +
+
+ + diff --git a/templates/thoughts.html.j2 b/templates/thoughts.html.j2 new file mode 100644 index 0000000..17b2797 --- /dev/null +++ b/templates/thoughts.html.j2 @@ -0,0 +1,5 @@ +{% extends "template.html.j2" %} +{% block content %} + Back to main page + {{ content }} +{% endblock %} -- cgit v1.2.3