selfprivacy.org/_vendor/github.com/google/docsy/layouts/partials/pager.html

9 lines
643 B
HTML
Raw Normal View History

2024-04-21 23:04:16 +00:00
<ul class="list-unstyled d-flex justify-content-between align-items-center mb-0 pt-5">
<li>
2024-04-25 22:15:39 +00:00
<a {{if .PrevInSection}}href="{{.PrevInSection.RelPermalink}}" aria-label="{{ T "ui_pager_prev" }} - {{.PrevInSection.Title}}" {{end}}class="btn btn-primary{{if not .PrevInSection}} disabled{{end}}"><span class="me-1"></span>{{ T "ui_pager_prev" }}</a>
2024-04-21 23:04:16 +00:00
</li>
<li>
2024-04-25 22:15:39 +00:00
<a {{if .NextInSection}}href="{{.NextInSection.RelPermalink}}" aria-label="{{ T "ui_pager_next" }} - {{.NextInSection.Title}}" {{end}}class="btn btn-primary{{if not .NextInSection}} disabled{{end}}">{{ T "ui_pager_next" }}<span class="ms-1"></span></a>
2024-04-21 23:04:16 +00:00
</li>
</ul>