summaryrefslogtreecommitdiff
path: root/view/html/recipe.html
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-02-12 20:33:24 +0100
committerxengineering <me@xengineering.eu>2024-02-13 20:26:47 +0100
commitbf0ad86df2e64191f6c430c328fee211ac3affa7 (patch)
tree6bde15b19d89cc31c9ed6e42a4cbccfb6dd6c4c8 /view/html/recipe.html
parent40868be7d4b9e1d9909a19dccc25ec49c1b5924b (diff)
downloadceres-bf0ad86df2e64191f6c430c328fee211ac3affa7.tar
ceres-bf0ad86df2e64191f6c430c328fee211ac3affa7.tar.zst
ceres-bf0ad86df2e64191f6c430c328fee211ac3affa7.zip
view: Implement GET handler for model.Recipe
Diffstat (limited to 'view/html/recipe.html')
-rw-r--r--view/html/recipe.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/view/html/recipe.html b/view/html/recipe.html
new file mode 100644
index 0000000..30aecb5
--- /dev/null
+++ b/view/html/recipe.html
@@ -0,0 +1,19 @@
+{{define "recipe"}}
+<html>
+ {{ template "head" }}
+ <header>
+ <nav>
+ <a href="/">HOME</a>
+ </nav>
+ <h1>{{.Title}}</h1>
+ </header>
+ <body>
+ <main>
+ <p>Portions: {{.Portions}}</p>
+ <p><a href="{{.Url}}">original recipe</a></p>
+ <p>{{.Notes}}</p>
+ </main>
+ {{ template "footer" }}
+ </body>
+</html>
+{{end}}