diff options
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r-- | layouts/_default/baseof.html | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 13f61d2..a1eb732 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -5,7 +5,21 @@ <body class="d-flex flex-column h-100"> {{ partial "header.html" . }} - {{ block "main" . }}{{ end }} + <main> + <div class="container-lg clearfix"> + <!-- list --> + <div class="col-md-9 col-12 float-left" id="content"> + {{ block "main" . }}{{ end }} + </div> + <!-- sidebar --> + <div class="col-md-3 col-12 float-left" id="sidebar"> + {{ partial "sidebar.html" . }} + </div> + <div id="container-progress"> + <div id="progress"></div> + </div> + </div> + </main> {{ partial "footer.html" . }} {{ partial "scripts.html" . }} |