aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 8128fa2846057224dc32cc1431458104aa280b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>{{ content "title" }} | COMPROMYSE</title>

    <link href="/assets/stylesheet.css" rel="stylesheet" />
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Jersey+15&display=swap" rel="stylesheet">
  </head>
  <body class="bg-zinc-900 text-pink-300 font-['Jersey_15'] selection:text-pink-900 selection:bg-pink-100 lg:text-xl">
    <div class="min-h-screen flex flex-col">

      {{ include "navbar.html" }}

      <div class="flex flex-grow flex-col">
        {{ body }}
      </div>

      {{ include "footer.html" }}

    </div>
  </body>
</html>