diff options
Diffstat (limited to 'data/templates/index.html')
-rw-r--r-- | data/templates/index.html | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/data/templates/index.html b/data/templates/index.html index f216ed4..9115d31 100644 --- a/data/templates/index.html +++ b/data/templates/index.html @@ -8,22 +8,29 @@ <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel="stylesheet" href="./static/libweb.css" type="text/css"> + <link rel="stylesheet" href="./static/style.css" type="text/css"> </head> <body> - <main> + <header> + <nav> + <a href="./add_recipes">add recipe</a> + </nav> <h1>Recipes</h1> - <button><a href="./add_recipes">add recipe</a></button> + </header> + + <main> <p>Here are the available recipes 😋🍳🍔🍕🥘</p> - {{range .}} - <a href="./recipe?id={{.Id}}"> - <div class="card"> - <h5 class="card-first-item" class="card-last-item">{{.Title}}</h5> - </div> - </a>{{end}} + <ul>{{range .}} + <li><a href="./recipe?id={{.Id}}">{{.Title}}</a></li>{{end}} + </ul> + + <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> </main> </body> |