summaryrefslogtreecommitdiff
path: root/files/base.html
blob: d965c2594756408ae6f502d74983d0ba25bc54a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html lang="{{ .Config.Language }}">
  <head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width,initial-scale=1">
	<title>{{ block "title" . }}{{ .Config.Title }}{{ end }}</title>
	<meta name="description" content="{{ block "description" . }}{{ .Config.Description }}{{ end }}">
	<link rel="alternate" type="application/rss+xml" href="{{ .Config.BaseURL }}/index.xml">
  </head>
  <body>
    <main>
      {{ block "content" . }}{{ end }}
    </main>
  </body>
</html>