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

<html>

	{{ template "head.html" }}

	<body>

		<header>{{if ne .UpstreamUrl ""}}
			<nav>
				<a href="{{.UpstreamUrl}}">Link to recipe</a>
			</nav>
			{{end}}
			<h1>{{.Title}}</h1>
		</header>

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

			{{ template "footer.html" }}

		</main>
	</body>
</html>