mirror of
https://github.com/Smaug123/static-site-pipeline
synced 2025-10-10 10:18:42 +00:00
22 lines
437 B
HTML
22 lines
437 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{- site.Language.Lang -}}" data-theme="{{- .Site.Params.displayMode -}}">
|
|
{{- partial "head.html" . -}}
|
|
<body>
|
|
|
|
<div>
|
|
{{ partial "navbar.html" . }}
|
|
<div class="main">
|
|
<div class="autopagerize_page_element">
|
|
<div class="content">
|
|
{{- block "main" . }}{{- end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{- partial "sidebar.html" . -}}
|
|
</div>
|
|
|
|
{{- partial "footer.html" . -}}
|
|
</body>
|
|
|
|
</html>
|