summaryrefslogtreecommitdiff
path: root/view/html
diff options
context:
space:
mode:
Diffstat (limited to 'view/html')
-rw-r--r--view/html/recipe.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/view/html/recipe.html b/view/html/recipe.html
new file mode 100644
index 0000000..acf346f
--- /dev/null
+++ b/view/html/recipe.html
@@ -0,0 +1,20 @@
+{{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>
+ <a href="/recipes/{{.Id}}/edit"><button>edit</button></a>
+ </main>
+ {{ template "footer" }}
+ </body>
+</html>
+{{end}}