summaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
blob: 3a2c806f817ab76115503ec210c649c817983dae (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <link rel="icon" href="logo.png" width="192" height="192">
    <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=Balthazar&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="/style.css">
    {{ $title := site.Title }}
    {{ if not .IsHome }}
      {{ $title = printf "%s | %s" .Title site.Title }}
    {{ end }}
    <title>
      {{ $title }}
    </title>
  </head>

  
  <header>
    <img src="/logo.png">
    <div class="topnav">
    {{ partial "menu.html" . }}
    </div>
    <br>
  </header>

  <body>
    <div class="box">
      <main>
        {{ block "main" . }}{{ end }}
      </main>
    </div>
  </body>
  
  <body>
    <div class="contact">
    </div>
  </body>
  
  <footer>
    <p>Designed by <a style="color:#174372;" href="https://btkoch.xyz">Kocher Web Styling</a></p>
  </footer>
</html>