{{define "recipe-confirm-deletion"}} <!DOCTYPE html> <html> {{ template "head" }} <body> <header> {{ template "nav" }} <h1>Delete a recipe</h1> </header> <main> <p>Do you really want to delete this recipe?</p> <button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button> <button onclick="del('/recipe/{{.Id}}')">delete</button> </main> {{ template "footer" }} <script src="/static/view/static/ceres.js"></script> </body> </html> {{end}}