From c6d2e9dadcd08cdf82aab507d9d4d8d58574df20 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 27 Dec 2023 13:33:59 +0100 Subject: Implement index page with recipe overview --- view/html/footer.html | 5 +++++ view/html/head.html | 8 ++++++++ view/html/index.html | 40 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 view/html/footer.html create mode 100644 view/html/head.html create mode 100644 view/html/index.html (limited to 'view/html') diff --git a/view/html/footer.html b/view/html/footer.html new file mode 100644 index 0000000..5128b7f --- /dev/null +++ b/view/html/footer.html @@ -0,0 +1,5 @@ +{{define "footer"}} + +{{end}} diff --git a/view/html/head.html b/view/html/head.html new file mode 100644 index 0000000..91ae004 --- /dev/null +++ b/view/html/head.html @@ -0,0 +1,8 @@ +{{define "head"}} + + Recipes + + + + +{{end}} diff --git a/view/html/index.html b/view/html/index.html new file mode 100644 index 0000000..45f600f --- /dev/null +++ b/view/html/index.html @@ -0,0 +1,40 @@ +{{define "index"}} + + {{ template "head" }} +
+ +

Recipe overview

+
+ +
+

Here are the available recipes 😋🍳🍔🍕🥘

+ + +
+ {{ template "footer" }} + + + +{{end}} -- cgit v1.2.3-70-g09d2