{{define "recipe"}}
<!DOCTYPE html>
<html>
	{{ template "head" }}
	<header>
		{{ template "nav" }}
		<h1>{{.Title}}</h1>
	</header>
	<body>
		<main>
			<p>Portions: {{.Portions}}</p>
			<p><a href="{{.Url}}">original recipe</a></p>
			<p>{{.Notes}}</p>
			<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}}