summaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
blob: d9b2212adbbf0309923b725b84cc686753689719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="{{ .Site.Language }}">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>{{ if not .IsHome }}{{ .Title | title }} - {{ end }}{{ .Site.Title }}</title>
  <link rel="stylesheet" type="text/css" href="/style.css">
  <link rel="icon" href="/favicon.ico">
</head>
<body>
  {{ partial "header.html" . }}
  <main>
    {{ block "main" . }}
      {{ .Content }}
    {{ end }}
  {{ partial "footer.html" . }}
  </main>
</body>
</html>