blob: 98eb9dad697f617116ada93d63e7409191420319 (
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
|
<!DOCTYPE html>
<html>
{{ template "head.html" }}
<body>
<header>
<nav>
<a href="./add_recipes">add recipe</a>
</nav>
<h1>Recipes</h1>
</header>
<main>
<p>Here are the available recipes 😋🍳🍔🍕🥘</p>
<ul>{{range .}}
<li><a href="./recipe?id={{.Id}}">{{.Title}}</a></li>{{end}}
</ul>
<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>
|