Add ToC to long pages

* A compact, fixed box in the right screen
* Only for big screens, > 1200 px wide
This commit is contained in:
bep
2015-05-11 18:39:40 +02:00
parent be16e5ffb9
commit be4f48652d
17 changed files with 80 additions and 14 deletions

View File

@@ -1,3 +1,12 @@
{{ 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" . }}

View File

@@ -1,8 +1,10 @@
<hr style="margin: 2em auto 0.25em;">
<div style="font-size: medium; font-style: italic; text-align: right;">Hugo v{{ .Hugo.Version }} documentation</div>
</div>
</section>
</div>
<div style="font-size: medium; font-style: italic; text-align: right;">Hugo v{{ .Hugo.Version }} documentation</div>
</div>
<div class="col-md-1">
{{ if .IsPage }}
{{ with .GetParam "next" }}

View File

@@ -81,4 +81,8 @@
<!--<h3>{{.Title}}</h3>-->
<!--</header>-->
<div class="panel-body">
{{ partial "google-cse.html" . }}
<div class="row">
<div class="col-lg-12 cse">
{{ partial "google-cse.html" . }}
</div>
</div>