summaryrefslogtreecommitdiffstats
path: root/layouts/_default/baseof.html
diff options
context:
space:
mode:
authorDSRKafuU2020-04-18 10:56:58 +0800
committerGitHub2020-04-18 10:56:58 +0800
commit7ca4f16d5789b56495dba7fe5f73bb5306094fd1 (patch)
tree0de9b28bbdaedadd38dfb60ef64da391762680b8 /layouts/_default/baseof.html
parent3834f74b43554cd10de93a15d84953e17b9c995e (diff)
parent71e742bbc5ccd3ffb455d514ab788718005d7a6b (diff)
downloadhugo-theme-fuji-7ca4f16d5789b56495dba7fe5f73bb5306094fd1.tar.gz
hugo-theme-fuji-7ca4f16d5789b56495dba7fe5f73bb5306094fd1.tar.bz2
hugo-theme-fuji-7ca4f16d5789b56495dba7fe5f73bb5306094fd1.zip
Merge pull request #3 from ress997/patch-2
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" . }}