summaryrefslogtreecommitdiff
path: root/view/html/recipe.html
blob: 59ed5755b5993a7278255de1afa42c05a436369e (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"}}
<!DOCTYPE html>
<html>
	{{ template "head" }}
	<header>
		{{ template "nav" }}
		<h1>{{.Title}}</h1>
	</header>
	<body>
		<main>
			<p>
				<a class="button" href="/recipe/{{.Id}}?view=recipe-edit">edit</a>
				<a class="button" style="background-color:red" href="/recipe/{{.Id}}?view=recipe-confirm-deletion">delete</a>
			</p>{{ if ne .Portions "" }}
			<p><i>Portions:</i> {{.Portions}}</p>{{end}}{{ if ne .Url "" }}
			<p><i>Original recipe:</i> <a href="{{.Url}}">link</a></p>{{end}}{{ if ne .Notes "" }}
			<p class="notice" style="white-space: pre-line;">{{.Notes}}</p>{{end}}
		</main>
		{{ template "footer" }}
		<script src="/static/view/static/ceres.js"></script>
	</body>
</html>
{{end}}