aboutsummaryrefslogtreecommitdiff
path: root/templates/main.html
blob: 23c37fe2c1b3dd7086cbbdff1726a637d1b57296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="fr">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>$title$</title>
    <link rel="stylesheet" href="/main.css" />
    <link rel="icon" href="/images/icon.png">
  </head>
  <body>
    <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>