blob: 7b1a70d74df16ec6bddcbc085b62c7c877f58744 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{{define "recipe"}}
<!DOCTYPE html>
<html>
{{ template "head" }}
<header>
<nav>
<a href="/recipes">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="/recipe/{{.Id}}?view=recipe-edit"><button>edit</button></a>
<a href="/recipe/{{.Id}}?view=recipe-confirm-deletion"><button style="background-color:red">delete</button></a>
</main>
{{ template "footer" }}
</body>
</html>
{{end}}
|