mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-09 17:42:19 +00:00
36 lines
851 B
HTML
36 lines
851 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">
|
|
{{- block "main" . }}{{- end }}
|
|
</section>
|
|
|
|
<section class="page__aside">
|
|
<div class="aside__about">
|
|
{{- partial "about.html" . -}}
|
|
</div>
|
|
<hr>
|
|
<div class="aside__content">
|
|
{{- partial "aside" . }}
|
|
</div>
|
|
</section>
|
|
|
|
<footer class="page__footer">
|
|
{{- partial "footer.html" . -}}
|
|
</footer>
|
|
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|