summaryrefslogtreecommitdiff
path: root/data/templates/recipe.html
blob: 9f49fbb00253f03da52d664989680c70f8cad609 (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
<!DOCTYPE html>

<html>

	{{ template "head.html" }}

	<body>

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

		<main>
			<h2>Recipe description</h2>
			<a href="./recipe/edit?id={{.Id}}"><button>edit</button></a>
			{{.RenderedDescriptionMarkdown}}

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