<!DOCTYPE html> <html> {{ template "head.html" }} <body> <header> <nav> <a href="/index.html">HOME</a> <a href="/add_recipes">add recipe</a> </nav> <h1>Edit a recipe</h1> </header> <main> <p>Recipe ID: {{.Id}}</p> <pre contenteditable="true"><code>{{.DescriptionMarkdown}}</code></pre> <button>save</button> <!-- TODO add functionality --> <a href="/recipe?id={{.Id}}"><button>cancel</button></a> <button style="background-color: red">delete</button> <!-- TODO add functionality --> {{ template "footer.html" }} </main> </body> </html>