mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Changing the docs template partials to be able to be used to render a section
This commit is contained in:
parent
aae1ff3c92
commit
864f91d90e
3 changed files with 8 additions and 2 deletions
|
@ -3,11 +3,13 @@
|
|||
</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>
|
||||
<!-- page start-->
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
</header>
|
||||
<!--header end-->
|
||||
|
||||
{{ template "partials/menu.html" . }}
|
||||
{{ partial "menu.html" . }}
|
||||
|
||||
<!--main content start-->
|
||||
<section id="main-content">
|
||||
|
@ -68,11 +68,13 @@
|
|||
|
||||
<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">
|
||||
<section class="panel">
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue