{{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}}