summaryrefslogtreecommitdiff
path: root/data/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates/index.html')
-rw-r--r--data/templates/index.html49
1 files changed, 0 insertions, 49 deletions
diff --git a/data/templates/index.html b/data/templates/index.html
deleted file mode 100644
index 0b97187..0000000
--- a/data/templates/index.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!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>