summaryrefslogtreecommitdiff
path: root/view/html/recipe.html
blob: 82b426b0d45d4a1b0b678e128f75e3ce8e73ff05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{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>{{range .Steps}}
			<section>
				<p>{{.Text}}</p>
			</section>{{end}}
		</main>
		{{ template "footer" }}
	</body>
</html>
{{end}}