mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-09-14 16:14:42 -04:00
parent
3929637f98
commit
59ff11e890
12
layouts/_default/baseof.html
Normal file
12
layouts/_default/baseof.html
Normal file
@ -0,0 +1,12 @@
|
||||
{{ partial "header.html" . }}
|
||||
{{ if .Params.toc }}
|
||||
<div class="col-lg-8 col-md-12">
|
||||
{{block "main" .}}{{end}}
|
||||
</div>
|
||||
<div id="toc" class="col-lg-offset-6 toc {{ if gt (len .TableOfContents) 2500 }}compact{{ end }}">
|
||||
{{ .TableOfContents }}
|
||||
</div>
|
||||
{{ else }}
|
||||
{{block "main" .}}{{end}}
|
||||
{{ end }}
|
||||
{{ partial "footer.html" . }}
|
@ -1,12 +1 @@
|
||||
{{ 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 {{ if gt (len .TableOfContents) 2500 }}compact{{ end }}">
|
||||
{{ .TableOfContents }}
|
||||
</div>
|
||||
{{ else }}
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
{{ partial "footer.html" . }}
|
||||
{{ define "main" }}{{ .Content }}{{ end }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user