summaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
blob: 9805f8a51a311e6f4147a7b621ceaa1351158c77 (plain) (blame)
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
<!DOCTYPE html>
<html lang="en">

<head>
  <meta name="yandex-xverification" content="fc9dd63070a12909">
  <meta charset="UTF-8" />
  <meta author="Mateja Maric" />

  <!--<meta name="description"-->
  <!--content="I am Mateja Maric and this is my personal web site. I am a student from Belgrade, Serbia. I am primarily interested in Unix-like operating systems and free(as in freedom) software.">-->
  <!--<meta name="keywords" content="mateja, maric, homepage, site, blog, contact">-->
  <!--<link rel="canonical" href="https://matejamaric.com" />-->

  <meta name="viewport" content="width=device-width initial-scale=1.0" />
  <link href="/style.css" rel="stylesheet" type="text/css" />
  <title>{{ .Title }}</title>
</head>

<body>
  <nav>
    <div class="mm">Mateja Maric</div>
    <a {{ if eq .RelPermalink "/" }} class="active" {{ end }} href="/">Home</a>
    <a {{ if eq .RelPermalink "/blog/" }} class="active" {{ end }} href="/blog/">Blog</a>
    <a target="_blank" href="https://github.com/MatejaMaric">GitHub</a>
    <a target="_blank" href="https://git.matejamaric.com">Git server</a>
    <a {{ if eq .RelPermalink "/contact/" }} class="active" {{ end }} href="/contact/">Contact</a>
  </nav>
  <main>
    {{ block "main" . }}{{ end }}
  </main>

</body>

</html>