summaryrefslogtreecommitdiff
path: root/view
diff options
context:
space:
mode:
Diffstat (limited to 'view')
-rw-r--r--view/html/nav.html3
-rw-r--r--view/html/recipes.html5
2 files changed, 4 insertions, 4 deletions
diff --git a/view/html/nav.html b/view/html/nav.html
index 9da1b6b..9e7bd6e 100644
--- a/view/html/nav.html
+++ b/view/html/nav.html
@@ -1,6 +1,5 @@
{{define "nav"}}
<nav>
- <a href="/recipes">HOME</a>
- <a onclick="create('/recipe')">add recipe</a>
+ <a href="/recipes">Recipes</a>
</nav>
{{end}}
diff --git a/view/html/recipes.html b/view/html/recipes.html
index 0287dc5..dc072a1 100644
--- a/view/html/recipes.html
+++ b/view/html/recipes.html
@@ -4,12 +4,13 @@
{{ template "head" }}
<header>
{{ template "nav" }}
- <h1>Recipe overview</h1>
+ <h1>Recipes</h1>
</header>
<body>
<main>
<p>Here are the available recipes 😋🍳🍔🍕🥘</p>
- <input id="search" onkeyup="filter()" type="text" placeholder="Search for a recipe ..."></input>
+ <p><input id="search" onkeyup="filter()" type="text" placeholder="Search for a recipe ..."></p>
+ <button onclick="create('/recipe')">add</button>
<ul id="recipes">{{range .}}
<li><a href="./recipe/{{.Id}}">{{.Title}}</a></li>{{end}}
</ul>