blob: a35cc4987678ad528f82f3a1a55f1e13ca6b031e (
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
28
29
30
31
32
33
34
35
36
37
|
<!DOCTYPE html>
<html>
<head>
<title>Recipes</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../../../static/style.css" type="text/css">
</head>
<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}}
<footer>
<hr>
<p>The <a href="https://xengineering.eu/git/ceres">Ceres</a> recipe server is licensed under <a href="https://www.gnu.org/licenses/agpl-3.0.en.html">AGPL v3</a> and developed with <a href="https://simplecss.org/">simple.css</a>.</p>
</footer>
</main>
</body>
</html>
|