From c9abf3aa8835eaa48f6285ade39a7168aa3be7dc Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Sun, 5 May 2024 01:28:11 +0200 Subject: [PATCH] Add Sub Templates --- tmpl/head.tmpl | 9 +++++++++ tmpl/navbar.tmpl | 7 +++++++ tmpl/tail.tmpl | 4 ++++ 3 files changed, 20 insertions(+) create mode 100644 tmpl/head.tmpl create mode 100644 tmpl/navbar.tmpl create mode 100644 tmpl/tail.tmpl diff --git a/tmpl/head.tmpl b/tmpl/head.tmpl new file mode 100644 index 0000000..b26f37e --- /dev/null +++ b/tmpl/head.tmpl @@ -0,0 +1,9 @@ +{{define "head"}} + + + + + + +{{template "navbar"}} +{{end}} \ No newline at end of file diff --git a/tmpl/navbar.tmpl b/tmpl/navbar.tmpl new file mode 100644 index 0000000..86814b0 --- /dev/null +++ b/tmpl/navbar.tmpl @@ -0,0 +1,7 @@ +{{define "navbar"}} + +{{end}} \ No newline at end of file diff --git a/tmpl/tail.tmpl b/tmpl/tail.tmpl new file mode 100644 index 0000000..9a1b5d3 --- /dev/null +++ b/tmpl/tail.tmpl @@ -0,0 +1,4 @@ +{{define "tail"}} + + +{{end}} \ No newline at end of file