From 0e2998444cd1ae8a2e5af0c7642927bbe9d98e03 Mon Sep 17 00:00:00 2001 From: kvik Date: Tue, 28 Jul 2020 18:23:30 +0000 Subject: [PATCH] Add templates --- templates/body.html | 1 + templates/head.html | 4 ++++ templates/page.html | 9 +++++++++ 3 files changed, 14 insertions(+) create mode 100644 templates/body.html create mode 100644 templates/head.html create mode 100644 templates/page.html diff --git a/templates/body.html b/templates/body.html new file mode 100644 index 0000000..f03c6f3 --- /dev/null +++ b/templates/body.html @@ -0,0 +1 @@ +$body diff --git a/templates/head.html b/templates/head.html new file mode 100644 index 0000000..53fa431 --- /dev/null +++ b/templates/head.html @@ -0,0 +1,4 @@ + + + +$title diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 0000000..1ba9c91 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,9 @@ + + + + $head + + + $body + + -- 2.45.2