diff options
author | xengineering <me@xengineering.eu> | 2023-02-12 19:46:48 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-12 19:46:48 +0100 |
commit | ba327ee030a3b8abdbf9f5d10987060648dbb10e (patch) | |
tree | e1a9e046e2293bfa407535983b165fd620c06d42 | |
parent | ddb4a94dd72c250bd8c2090378ef9a4fff404787 (diff) | |
download | ceres-ba327ee030a3b8abdbf9f5d10987060648dbb10e.tar ceres-ba327ee030a3b8abdbf9f5d10987060648dbb10e.tar.zst ceres-ba327ee030a3b8abdbf9f5d10987060648dbb10e.zip |
Make add.html a template
This allows to use partial HTML files via Go's templating features.
-rw-r--r-- | data/static/add.html | 36 | ||||
-rw-r--r-- | data/templates/add.html | 26 | ||||
-rw-r--r-- | handler.go | 4 |
3 files changed, 27 insertions, 39 deletions
diff --git a/data/static/add.html b/data/static/add.html deleted file mode 100644 index 15d9f0e..0000000 --- a/data/static/add.html +++ /dev/null @@ -1,36 +0,0 @@ -<!DOCTYPE html> - -<html> - - <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> - - <body> - - <header> - <h1>Add a recipe</h1> - </header> - - <main> - <form action="/add_recipes" method="post"> - <input placeholder="Title" type="text" id="custom_title" name="title"><br> - <input placeholder="Link (optional)" type="text" id="custom_link" name="url"><br> - <button type="submit">add</button> - </form> - - <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> - -</html> diff --git a/data/templates/add.html b/data/templates/add.html new file mode 100644 index 0000000..39929dd --- /dev/null +++ b/data/templates/add.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> + +<html> + + {{ template "head.html" }} + + <body> + + <header> + <h1>Add a recipe</h1> + </header> + + <main> + <form action="/add_recipes" method="post"> + <input placeholder="Title" type="text" id="custom_title" name="title"><br> + <input placeholder="Link (optional)" type="text" id="custom_link" name="url"><br> + <button type="submit">add</button> + </form> + + {{ template "footer.html" }} + + </main> + + </body> + +</html> @@ -233,9 +233,7 @@ func recipeImageGet(w http.ResponseWriter, r *http.Request) { func addRecipesGet(w http.ResponseWriter, r *http.Request) { - filename := "add.html" - path := filepath.Join(config.Http.Static, filename) - http.ServeFile(w, r, path) + ServeTemplate(w, "add.html", nil) } func addRecipesPost(w http.ResponseWriter, r *http.Request) { |