mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-09-13 21:34:48 -04:00
Merge pull request #50 from cabello/patch-2
Check .Prev and .Next pointers before using it
This commit is contained in:
commit
7a3e32134b
@ -65,8 +65,12 @@ It makes use of [chrome templates](/layout/chrome)
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<a class="previous" href="{{.Prev.Permalink}}"> {{.Prev.Title}}</a>
|
||||
<a class="next" href="{{.Next.Permalink}}"> {{.Next.Title}}</a>
|
||||
{{ if .Prev }}
|
||||
<a class="previous" href="{{.Prev.Permalink}}"> {{.Prev.Title}}</a>
|
||||
{{ end }}
|
||||
{{ if .Next }}
|
||||
<a class="next" href="{{.Next.Permalink}}"> {{.Next.Title}}</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user