You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
498 B
24 lines
498 B
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language }}">
|
|
|
|
<head>
|
|
{{ partial "head.html" . }}
|
|
</head>
|
|
|
|
<body class="{{ if ne $.Site.Params.defaultTheme "light" -}} dark-theme {{- end -}}">
|
|
<div class="container">
|
|
{{ partial "header.html" . }}
|
|
|
|
<div class="content">
|
|
{{- block "main" . }}{{ end -}}
|
|
</div>
|
|
|
|
{{- block "footer" . }}
|
|
{{ partial "footer.html" . }}
|
|
{{- end }}
|
|
</div>
|
|
|
|
{{ partial "javascript.html" . }}
|
|
</body>
|
|
|
|
</html> |