Fix Prev/Next navigation buttons when viewing article (#15439)

Earlier both the on the left and right buttons had the text `Next>>` now
the left one will have the text `<< Prev`

fixes: https://github.com/kubernetes/website/issues/15438

Signed-off-by: Harsh Vardhan <harsh.vardhan@mayadata.io>
pull/15488/head
Harsh Vardhan 2019-07-21 14:16:54 +05:30 committed by Kubernetes Prow Robot
parent 6e153db6ac
commit b7b8ce0b25
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<div class="PageNavigation">
{{ if .PrevInSection }}
<div class="pagerButton left">
<h4><a class=" button" href="{{ .PrevInSection.RelPermalink }}"> {{ T "layouts_blog_pager_next" }} </a></h4>
<h4><a class=" button" href="{{ .PrevInSection.RelPermalink }}"> {{ T "layouts_blog_pager_prev" }} </a></h4>
</div>
{{ end }}
{{ if .NextInSection }}
@ -9,4 +9,4 @@
<h4><a class=" button" href="{{ .NextInSection.RelPermalink }}"> {{ T "layouts_blog_pager_next" }} </a></h4>
</div>
{{ end }}
</div>
</div>