42 lines
1.1 KiB
HTML
42 lines
1.1 KiB
HTML
<!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>
|