summaryrefslogtreecommitdiffstats
path: root/layouts/_default/baseof.html
diff options
context:
space:
mode:
authorRess2020-04-17 23:48:34 +0900
committerRess2020-04-17 23:48:34 +0900
commit71e742bbc5ccd3ffb455d514ab788718005d7a6b (patch)
tree0de9b28bbdaedadd38dfb60ef64da391762680b8 /layouts/_default/baseof.html
parent3834f74b43554cd10de93a15d84953e17b9c995e (diff)
downloadhugo-theme-fuji-71e742bbc5ccd3ffb455d514ab788718005d7a6b.tar.gz
hugo-theme-fuji-71e742bbc5ccd3ffb455d514ab788718005d7a6b.tar.bz2
hugo-theme-fuji-71e742bbc5ccd3ffb455d514ab788718005d7a6b.zip
Put same code in "baseof.html".
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html18
1 files changed, 17 insertions, 1 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 13f61d2..9f72153 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -5,7 +5,23 @@
<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">
+ <a href="javascript:void(0)">
+ <div id="progress"></div>
+ </a>
+ </div>
+ </div>
+ </main>
{{ partial "footer.html" . }}
{{ partial "scripts.html" . }}