docs: Refactor /docs to use the block keyword

Fixes #2226
This commit is contained in:
Bjørn Erik Pedersen 2016-06-20 15:20:44 +02:00
parent 56512e816f
commit c2bf748ec5
2 changed files with 13 additions and 12 deletions

View 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" . }}

View file

@ -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 }}