ref: 864f91d90e3f7f46e46ced9cc0ba58fdb76c2c39
parent: aae1ff3c92b7371385c25e4274957f01f04688ec
author: spf13 <[email protected]>
date: Tue Aug 19 17:28:37 EDT 2014
Changing the docs template partials to be able to be used to render a section
--- a/docs/layouts/partials/footer.html
+++ b/docs/layouts/partials/footer.html
@@ -3,10 +3,12 @@
</section>
</div>
<div class="col-md-1">
+ {{ if .IsPage }}
{{ with .GetParam "next" }}
<a class="navigation next" href="{{.}}">
<i class="fa fa-angle-right"> </i>
</a>
+ {{ end }}
{{ end }}
</div>
</div>
--- a/docs/layouts/partials/header.html
+++ b/docs/layouts/partials/header.html
@@ -48,7 +48,7 @@
</header>
<!--header end-->
-{{ template "partials/menu.html" . }}
+{{ partial "menu.html" . }}
<!--main content start-->
<section id="main-content">
@@ -68,10 +68,12 @@
<div class="row">
<div class="col-md-1">
+ {{ if .IsPage }}
{{ with .GetParam "prev" }}
<a class="navigation prev" href="{{.}}">
<i class="fa fa-angle-left"></i>
</a>
+ {{ end }}
{{ end }}
</div>
<div class="col-md-10">
--- a/docs/layouts/partials/menu.html
+++ b/docs/layouts/partials/menu.html
@@ -30,7 +30,9 @@
</li>
{{end}}
<li> <a href="https://github.com/spf13/hugo/issues" target="blank"><i class='fa fa-life-ring'></i>Issues & Help</a> </li>
- {{ $File := .File }} {{with .File.FileName }}<li><a href="https://github.com/spf13/hugo/edit/master/docs/content/{{ $File.Dir }}{{ $File.FileName }}" target="blank"><i class='fa fa-edit'></i> Refine this Page</a> </li>{{end}}
+ {{ if .IsPage }}
+ {{ $File := .File }} {{with $File.FileName }}<li><a href="https://github.com/spf13/hugo/edit/master/docs/content/{{ $File.Dir }}{{ $File.FileName }}" target="blank"><i class='fa fa-edit'></i> Refine this Page</a> </li>{{end}}
+ {{ end }}
</ul>
<!-- sidebar menu end-->
</div>