mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
18 lines
480 B
HTML
18 lines
480 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
|
|
<head>
|
|
{{- partial "head.html" . }}
|
|
</head>
|
|
|
|
<body
|
|
class="{{ if (and (eq .Kind `page` ) (ne .Layout `archives`)) }}single{{ else }}list{{ if .IsHome }} home {{ end }}{{ end }}{{ if eq $.Site.Params.defaultTheme `dark` }} dark {{ end }}">
|
|
{{- partial "header.html" . }}
|
|
<main class="main" id="top">
|
|
{{- block "main" . }}
|
|
{{end }}
|
|
</main>
|
|
{{- partial "footer.html" . }}
|
|
</body>
|
|
|
|
</html> |