summaryrefslogtreecommitdiff
path: root/view
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-01-17 20:56:33 +0100
committerxengineering <me@xengineering.eu>2024-01-17 21:03:36 +0100
commit34fa1017a697287540d92d8c36ecca988f936f16 (patch)
tree53d28064e51310c1d4e0a2617f35a81f24906498 /view
parent644ddcde14c0545dd667eaf096dadab518ad90a7 (diff)
downloadceres-34fa1017a697287540d92d8c36ecca988f936f16.tar
ceres-34fa1017a697287540d92d8c36ecca988f936f16.tar.zst
ceres-34fa1017a697287540d92d8c36ecca988f936f16.zip
Add recipe step view
This is the next increment to implement recipe steps.
Diffstat (limited to 'view')
-rw-r--r--view/html/recipe-step.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/view/html/recipe-step.html b/view/html/recipe-step.html
new file mode 100644
index 0000000..4d35e91
--- /dev/null
+++ b/view/html/recipe-step.html
@@ -0,0 +1,17 @@
+{{define "recipestep"}}
+<html>
+ {{ template "head" }}
+ <header>
+ <nav>
+ <a href="/">HOME</a>
+ </nav>
+ <h1>Recipe step</h1>
+ </header>
+ <body>
+ <main>
+ <p>{{.Text}}</p>
+ </main>
+ {{ template "footer" }}
+ </body>
+</html>
+{{end}}