Pagination centered?

This commit is contained in:
Phil Bajsicki 2024-12-08 03:17:31 +01:00
parent 91c8254119
commit 3f7a67f386
3 changed files with 7 additions and 5 deletions

View file

@ -121,8 +121,9 @@ table.lntable {
// Styling for the page numbers/ buttons on the bottom of the home page
.previous-page, .next-page, .pagination-indicator {
.pagination {
font-size: 1.5em;
margin: auto;
}
/* ------------------------------------------------------------------------ */

View file

@ -396,10 +396,7 @@ div.booktabs-wrapper {
width: 50%;
}
footer,
previous-page,
pagination-indicator,
next-page {
footer {
width: 50%;
margin: auto;
}

View file

@ -33,6 +33,8 @@
{{ if and (.Paginator) (gt .Paginator.TotalPages 1) }}
<hr />
<div id="pagination" class="pagination">
<span class="previous-page">
{{ if .Paginator.HasPrev }}
<a class="link-reverse" href="{{.Paginator.Prev.URL}}">«</a>
@ -49,6 +51,8 @@
{{ end }}
</span>
</div>
{{ end }}
{{ partial "footer.html" . }}