summaryrefslogtreecommitdiff
path: root/data/templates/recipe.html
blob: f95ace643e8b09cf2f7a8e9ad85bd1a881c5339e (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
40
41
42
43
<!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>For {{.Recipe.Portions}} portions you will need these ingredients:</p>

			<ul>
			{{range .Recipe.Steps}}{{range $i, $el := .Ingredients}}
				<li>{{if ne $el.Amount 0.0}}{{$el.Amount}} {{end}}{{if ne $el.Unit ""}}{{$el.Unit}} {{end}}{{$el.Type}}</li>
			{{end}}{{end}}
			</ul>

			{{if ne .Recipe.Url ""}}
			<p>Use this <a href="{{.Recipe.Url}}">link</a> to go to the original recipe.</p>
			{{end}}

			{{range .Recipe.Steps}}
			<section>
				<p>{{.Text}}</p>
				<p><i>{{range $i, $el := .Ingredients}}{{if $i}}, {{end}}{{if ne $el.Amount 0.0}}{{$el.Amount}} {{end}}{{if ne $el.Unit ""}}{{$el.Unit}} {{end}}{{$el.Type}}{{end}}</i></p>
			</section>
			{{end}}

			<a href="/recipe/edit?id={{.Id}}"><button>edit</button></a>
			<a href="/recipe/confirm-deletion?id={{.Id}}"><button style="background-color:red">delete</button></a>

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