{{define "body"}} <ul> {{range .Recipes}} <li> <a href="/recipes/{{.RecipeId}}">{{ .Preview }}</a> <button hx-delete="/recipes/{{.Id}}/later" hx-confirm="Are you sure you want to remove {{ .Preview }} from list of saved recipes?">Remove</button> </li> {{else}} <li><strong>No recipes saved for later</strong></li> {{end}} </ul> <a href="/recipes_for_later/edit">edit</a> <div>{{.Notes}}</div> {{end}}