blob: acf346f3f80854458702b62a228d02da4db6252a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{{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}}
|