rootdo/themes/risotto/layouts/_default/baseof.html

43 lines
1.1 KiB
HTML
Raw Normal View History

2024-10-04 12:44:59 +00:00
<!DOCTYPE html>
<html lang="{{- site.Language.Lang -}}">
<head>
{{- if .IsHome -}}
<meta name="description" content="{{ site.Params.Description }}" />
{{- else -}}
<meta name="description" content="{{ .Params.Description }}" />
{{- end }}
{{- partial "head.html" . -}}
<link rel="canonical" href="{{ .Permalink }}" />
</head>
<body>
<div class="page">
<header class="page__header">
{{- partial "header.html" . -}}
</header>
<section class="page__body">
{{- block "main" . }}{{- end }}
</section>
<section class="page__aside">
<div class="aside__about">
{{- partial "about.html" . -}}
</div>
<hr>
<div class="aside__content">
{{- block "aside" . }}{{- end }}
</div>
</section>
<footer class="page__footer">
{{- partial "footer.html" . -}}
</footer>
</div>
</body>
</html>