Layout i to spalter

This commit is contained in:
allan 2021-04-06 22:01:54 +02:00
commit 208b1fdb04
2 changed files with 45 additions and 0 deletions

0
README.md Normal file
View File

View File

@ -0,0 +1,45 @@
<!doctype html>
<html lang="en">
{{ partial "head.html" . }}
<body>
<div class="container-fluid everything-container">
<div class="row">
<div class="col-md-3 datacoop-sidebar d-print-none navbar navbar-expand-md mb-3" style="min-width: 340px;">
<div style="width: 340px; height: 100%;">
{{ partial "nav.html" . }}
</div>
<div class="sticky-bottom">
{{ with (now) | printf "%s" }}
{{ i18n "generated_date" . }}
{{ end }}
</div>
</div>
<div class="col-md-1 datacoop-sidebar-gutter datacoop-sidebar-gutter-right d-print-none d-none d-md-flex">
<div class="container datacoop-container-content">
<article>
{{ block "main" . }}{{ end }}
</article>
</div>
<div class="fixed-top">
<a href="#" class="sidebar-rotated">
<img src="{{ "/static/img/icons/expand.svg" | absURL }}" alt="open">
{{ i18n "services_status" }}
</a>
</div>
</div>
</div>
</div>
{{ partial "bootstrap-js.html" . }}
</body>
</html>