JohnTech/layouts/index.html
2025-03-12 22:42:42 +00:00

28 lines
779 B
HTML

<!doctype html>
<html lang="{{- site.Language.Lang -}}">
<head>
{{- partial "head.html" . -}}
</head>
<body>
<div class="page">
<header class="page__header">{{- partial "header.html" . -}}</header>
<section class="page__body">{{ .Content }}</section>
<section class="page__aside">
<div class="aside__about">{{- partial "about.html" . -}}</div>
<hr />
<div class="aside__content">
{{- block "aside" . }}{{- end }}{{partial "allTags.html" . -}}
</div>
<div class="aside__content">
{{- block "aside" . }}{{- end }}{{partial "recentPosts.html" . -}}
</div>
</section>
<footer class="page__footer">{{- partial "footer.html" . -}}</footer>
</div>
</body>
</html>