summaryrefslogtreecommitdiff
path: root/themes/stingray/layouts/_default
diff options
context:
space:
mode:
authorRayHammer <evkondratyev@yandex.ru>2022-10-23 13:48:18 +0200
committerRayHammer <evkondratyev@yandex.ru>2022-10-23 13:48:18 +0200
commit730d3a8eba6875fa601dece7c0e62e07510b3d1b (patch)
tree298ff4bfd10d1e8b59ed41ca40e48d95f4ce9365 /themes/stingray/layouts/_default
parent5fa9597734f5183863bde2a4eed35fb5b8f0f115 (diff)
Made an aside block
Diffstat (limited to 'themes/stingray/layouts/_default')
-rw-r--r--themes/stingray/layouts/_default/baseof.html13
1 files changed, 6 insertions, 7 deletions
diff --git a/themes/stingray/layouts/_default/baseof.html b/themes/stingray/layouts/_default/baseof.html
index d4ded14..38cf6a3 100644
--- a/themes/stingray/layouts/_default/baseof.html
+++ b/themes/stingray/layouts/_default/baseof.html
@@ -3,15 +3,14 @@
{{- partial "head.html" . -}}
<body>
<div class="jumbotron">
- <header>
{{- partial "header.html" . -}}
- </header>
- <main id="content">
- {{- block "main" . }}{{- end }}
- </main>
- <footer>
+ <div class="container-fluid" style="overflow: hidden;">
+ {{- partial "aside.html" . -}}
+ <main id="content">
+ {{- block "main" . }}{{- end }}
+ </main>
+ </div>
{{- partial "footer.html" . -}}
- </footer>
</div>
</body>
</html>