diff options
Diffstat (limited to 'view/html')
-rw-r--r-- | view/html/nav.html | 1 | ||||
-rw-r--r-- | view/html/recipe.html | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/view/html/nav.html b/view/html/nav.html index 7bc0206..9da1b6b 100644 --- a/view/html/nav.html +++ b/view/html/nav.html @@ -1,5 +1,6 @@ {{define "nav"}} <nav> <a href="/recipes">HOME</a> + <a onclick="create('/recipe')">add recipe</a> </nav> {{end}} diff --git a/view/html/recipe.html b/view/html/recipe.html index 04230ea..bce4ffa 100644 --- a/view/html/recipe.html +++ b/view/html/recipe.html @@ -15,6 +15,7 @@ <a href="/recipe/{{.Id}}?view=recipe-confirm-deletion"><button style="background-color:red">delete</button></a> </main> {{ template "footer" }} + <script src="/static/view/static/ceres.js"></script> </body> </html> {{end}} |