summaryrefslogtreecommitdiff
path: root/view/html/recipe.html
blob: 356abda9a4c12211b01e5d1ca6049ea93d2dff93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{define "recipe"}}
<!DOCTYPE html>
<html>
	{{ template "head" }}
	<header>
		{{ template "nav" }}
		<h1>{{.Title}}</h1>
	</header>
	<body>
		<main>{{ if ne .Portions "" }}
			<p>Portions: {{.Portions}}</p>{{end}}{{ if ne .Url "" }}
			<p><a href="{{.Url}}">original recipe</a></p>{{end}}{{ if ne .Notes "" }}
			<p>{{.Notes}}</p>{{end}}
			<a href="/recipe/{{.Id}}?view=recipe-edit"><button>edit</button></a>
			<a href="/recipe/{{.Id}}?view=recipe-confirm-deletion"><button style="background-color:red">delete</button></a>
		</main>
		{{ template "footer" }}
		<script src="/static/view/static/ceres.js"></script>
	</body>
</html>
{{end}}