diff options
-rw-r--r-- | data/templates/head.html | 9 | ||||
-rw-r--r-- | data/templates/index.html | 10 | ||||
-rw-r--r-- | data/templates/recipe.html | 10 | ||||
-rw-r--r-- | data/templates/recipe_edit.html | 10 |
4 files changed, 12 insertions, 27 deletions
diff --git a/data/templates/head.html b/data/templates/head.html new file mode 100644 index 0000000..33f0c6d --- /dev/null +++ b/data/templates/head.html @@ -0,0 +1,9 @@ + <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 index 9115d31..98eb9da 100644 --- a/data/templates/index.html +++ b/data/templates/index.html @@ -1,17 +1,9 @@ <!DOCTYPE html> <html> - - <head> - <title>Recipes</title> + {{ template "head.html" }} - <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> diff --git a/data/templates/recipe.html b/data/templates/recipe.html index a35cc49..e8b1565 100644 --- a/data/templates/recipe.html +++ b/data/templates/recipe.html @@ -1,17 +1,9 @@ <!DOCTYPE html> <html> - - <head> - <title>Recipes</title> + {{ template "head.html" }} - <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>{{if ne .UpstreamUrl ""}} diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html index b5c9672..954bc39 100644 --- a/data/templates/recipe_edit.html +++ b/data/templates/recipe_edit.html @@ -1,17 +1,9 @@ <!DOCTYPE html> <html> - - <head> - <title>Recipes</title> + {{ template "head.html" }} - <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>Edit a recipe</h1> |