mirror of
https://github.com/gohugoio/hugo.git
synced 2026-09-03 12:12:37 +00:00
68dd83a920
* A compact, fixed box in the right screen * Only for big screens, > 1200 px wide
13 lines
289 B
HTML
13 lines
289 B
HTML
{{ partial "header.html" . }}
|
|
{{ if .Params.toc }}
|
|
<div class="col-lg-8 col-md-12">
|
|
{{ .Content }}
|
|
</div>
|
|
<div id="toc" class="col-lg-offset-6 toc {{ with .Params.tocstyle }}{{ . }}{{ end }}">
|
|
{{ .TableOfContents }}
|
|
</div>
|
|
{{ else }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
{{ partial "footer.html" . }}
|