summaryrefslogtreecommitdiff
path: root/data/templates/recipe.html
blob: 7bbb660a39640be63e94156d6833763201d73549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>

<html>

	{{ template "head.html" }}

	<body>

		<header>
			<nav>
				<a href="/index.html">HOME</a>
				<a href="/add_recipes">add recipe</a>
			</nav>
			<h1>{{.Recipe.Title}}</h1>
		</header>

		<main>
			<p>This recipe is written for {{.Recipe.Portions}} portions.</p>

			<p><a href="{{.Recipe.Url}}">Link</a></p>

			<hr>

			{{range .Recipe.Steps}}
				<p>{{.Text}}</p>
				<ul>
				{{range .Ingredients}}
				<li>{{.Amount}} {{.Type}}</li>
				{{end}}
				</ul>
				<hr>
			{{end}}

			<a href="/recipe/edit?id={{.Id}}"><button>edit</button></a>

			{{ template "footer.html" }}
		</main>
	</body>
</html>