diff options
author | Joris | 2017-05-08 20:44:45 +0200 |
---|---|---|
committer | Joris | 2017-05-08 20:44:45 +0200 |
commit | 14433a928f7fdf9be3193812cbbed1a5ae49ecd7 (patch) | |
tree | a9a81b57922ba007f9864db9fbe789e559d10fb3 /templates/main.html | |
parent | 9e4c00c3df11b7ffc1e9b626ffbf5a74521b5a7a (diff) |
Let the user upgrade an ingredient quantity and adapt other quantities
Diffstat (limited to 'templates/main.html')
-rw-r--r-- | templates/main.html | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/templates/main.html b/templates/main.html index be23249..23c37fe 100644 --- a/templates/main.html +++ b/templates/main.html @@ -4,19 +4,16 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>$title$</title> - <link rel="stylesheet" href="/design/main.css" /> + <link rel="stylesheet" href="/main.css" /> <link rel="icon" href="/images/icon.png"> </head> <body> - <a href="/" class="header"> - Recettes - </a> - <div id="content"> - $if(hideTitle)$ - $else$ - <h1>$title$</h1> - $endif$ - $body$ - </div> + <a href="/" class="header">Recettes</a> + $if(hideTitle)$ + $else$ + <h1>$title$</h1> + $endif$ + <div id="content">$body$</div> + <script src="/main.js"></script> </body> </html> |