1
0
mirror of https://github.com/alanorth/hugo-theme-bootstrap4-blog.git synced 2025-05-07 21:16:00 +02:00

layouts: Allow hiding the sidebar

Set the following parameter to hide the sidebar:

  [params.sidebar]
    hide = true
This commit is contained in:
2016-08-28 23:41:34 +03:00
parent 6ccdf9a438
commit bfaa9ac247

View File

@ -6,7 +6,9 @@
{{ end }}
</div> <!-- /.blog-main -->
{{ partial "sidebar.html" . }}
{{ if not .Site.Params.sidebar.hide }}
{{ partial "sidebar.html" . }}
{{ end }}
</div> <!-- /.row -->
</div> <!-- /.container -->