summaryrefslogtreecommitdiff
path: root/data/templates/index.html
blob: 0b971879f79042e9e7360ea3cb3273aca6f2923a (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
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>

<html>

	{{ template "head.html" }}

	<body>

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

		<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={{.Id}}">{{.Title}}</a></li>{{end}}
			</ul>

			{{ template "footer.html" }}

		</main>

		<script>
			function filter() {
				var input, query, ul, li, a, i, txtValue;
				input = document.getElementById('search');
				query = input.value.toUpperCase();
				ul = document.getElementById("recipes");
				li = ul.getElementsByTagName('li');

				for (i = 0; i < li.length; i++) {
					a = li[i].getElementsByTagName("a")[0];
					txtValue = a.textContent || a.innerText;
					if (txtValue.toUpperCase().indexOf(query) > -1) {
						li[i].style.display = "";
					} else {
						li[i].style.display = "none";
					}
				}
			}
		</script>
	</body>

</html>