diff options
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/footer.html | 4 | ||||
-rw-r--r-- | data/templates/head.html | 9 | ||||
-rw-r--r-- | data/templates/index.html | 49 | ||||
-rw-r--r-- | data/templates/recipe.html | 43 | ||||
-rw-r--r-- | data/templates/recipe_confirm_deletion.html | 25 | ||||
-rw-r--r-- | data/templates/recipe_edit.html | 26 |
6 files changed, 0 insertions, 156 deletions
diff --git a/data/templates/footer.html b/data/templates/footer.html deleted file mode 100644 index 1b5bf15..0000000 --- a/data/templates/footer.html +++ /dev/null @@ -1,4 +0,0 @@ - <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> diff --git a/data/templates/head.html b/data/templates/head.html deleted file mode 100644 index 33f0c6d..0000000 --- a/data/templates/head.html +++ /dev/null @@ -1,9 +0,0 @@ - <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> 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> diff --git a/data/templates/recipe.html b/data/templates/recipe.html deleted file mode 100644 index f95ace6..0000000 --- a/data/templates/recipe.html +++ /dev/null @@ -1,43 +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>{{.Recipe.Title}}</h1> - </header> - - <main> - <p>For {{.Recipe.Portions}} portions you will need these ingredients:</p> - - <ul> - {{range .Recipe.Steps}}{{range $i, $el := .Ingredients}} - <li>{{if ne $el.Amount 0.0}}{{$el.Amount}} {{end}}{{if ne $el.Unit ""}}{{$el.Unit}} {{end}}{{$el.Type}}</li> - {{end}}{{end}} - </ul> - - {{if ne .Recipe.Url ""}} - <p>Use this <a href="{{.Recipe.Url}}">link</a> to go to the original recipe.</p> - {{end}} - - {{range .Recipe.Steps}} - <section> - <p>{{.Text}}</p> - <p><i>{{range $i, $el := .Ingredients}}{{if $i}}, {{end}}{{if ne $el.Amount 0.0}}{{$el.Amount}} {{end}}{{if ne $el.Unit ""}}{{$el.Unit}} {{end}}{{$el.Type}}{{end}}</i></p> - </section> - {{end}} - - <a href="/recipe/edit?id={{.Id}}"><button>edit</button></a> - <a href="/recipe/confirm-deletion?id={{.Id}}"><button style="background-color:red">delete</button></a> - - {{ template "footer.html" }} - </main> - </body> -</html> diff --git a/data/templates/recipe_confirm_deletion.html b/data/templates/recipe_confirm_deletion.html deleted file mode 100644 index 17c4da8..0000000 --- a/data/templates/recipe_confirm_deletion.html +++ /dev/null @@ -1,25 +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>Delete a recipe</h1> - </header> - - <main> - <p>Do you really want to delete this recipe?</p> - <form action="/recipe/confirm-deletion?id={{.Id}}" method="POST"> - <a href="/recipe?id={{.Id}}"><button type="button">cancel</button></a> - <button style="background-color:red" type="submit">delete</button> - </form> - {{ template "footer.html" }} - </main> - </body> -</html> diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html deleted file mode 100644 index 6ef41f8..0000000 --- a/data/templates/recipe_edit.html +++ /dev/null @@ -1,26 +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>{{.Title}}</h1> - </header> - - <main> - <form action="/recipe/edit" method="POST"> - <input type="hidden" name="id" value="{{.Id}}" /> - <textarea style="resize:none;font-family:monospace, monospace;font-size: 1rem;" rows="18" wrap="soft" name="text">{{.Text}}</textarea> - <button type="submit">save</button> - <a href="/recipe?id={{.Id}}"><button type="button">cancel</button></a> - </form> - {{ template "footer.html" }} - </main> - </body> -</html> |