b7b8ce0b25
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>
13 lines
446 B
HTML
13 lines
446 B
HTML
<div class="PageNavigation">
|
|
{{ if .PrevInSection }}
|
|
<div class="pagerButton left">
|
|
<h4><a class=" button" href="{{ .PrevInSection.RelPermalink }}"> {{ T "layouts_blog_pager_prev" }} </a></h4>
|
|
</div>
|
|
{{ end }}
|
|
{{ if .NextInSection }}
|
|
<div class="pagerButton right">
|
|
<h4><a class=" button" href="{{ .NextInSection.RelPermalink }}"> {{ T "layouts_blog_pager_next" }} </a></h4>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|