18 lines
612 B
HTML
18 lines
612 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ if .Title }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
|
|
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ .Site.Params.description }}{{ end }}">
|
|
{{- partial "head.html" . -}}
|
|
</head>
|
|
<body class="{{ if .IsHome }}home{{ else }}page{{ end }}">
|
|
{{- partial "header.html" . -}}
|
|
<main>
|
|
{{- block "main" . }}{{- end }}
|
|
</main>
|
|
{{- partial "footer.html" . -}}
|
|
</body>
|
|
</html>
|