summaryrefslogtreecommitdiff
path: root/themes/orca/layouts/_default/baseof.html
blob: 034b6a1c8468bdf51f71a09ba2674d4dfe9036ee (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>
  {{ $stylesheet := resources.Get "style.css" | minify | fingerprint }}
  <link rel="stylesheet" type="text/css" href="{{ $stylesheet.Permalink }}">
  <link rel="icon" href="/favicon.ico">
</head>
<body>
  {{ partial "header.html" . }}
  <main>
{{ block "main" . }}
  {{ .Content }}
{{ end }}
  </main>
</body>
</html>