blob: 0287dc5a0d2f421006ad53734b9e782bdb6de0fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{{define "recipes"}}
<!DOCTYPE html>
<html>
{{ template "head" }}
<header>
{{ template "nav" }}
<h1>Recipe overview</h1>
</header>
<body>
<main>
<p>Here are the available recipes 😋🍳🍔🍕🥘</p>
<input id="search" onkeyup="filter()" type="text" placeholder="Search for a recipe ..."></input>
<ul id="recipes">{{range .}}
<li><a href="./recipe/{{.Id}}">{{.Title}}</a></li>{{end}}
</ul>
</main>
{{ template "footer" }}
<script src="/static/view/static/ceres.js"></script>
</body>
</html>
{{end}}
|