summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--system/admin/handlers.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/admin/handlers.go b/system/admin/handlers.go
index 25de560..699e503 100644
--- a/system/admin/handlers.go
+++ b/system/admin/handlers.go
@@ -978,9 +978,9 @@ func postsHandler(res http.ResponseWriter, req *http.Request) {
pagination := fmt.Sprintf(`
<ul class="pagination row">
- <li class="waves-effect %s"><a href="%s"><i class="col s2 material-icons">chevron_left</i></a></li>
+ <li class="col s2 waves-effect %s"><a href="%s"><i class="material-icons">chevron_left</i></a></li>
<li class="col s8">%d to %d of %d</li>
- <li class="waves-effect %s"><a href="%s"><i class="col s2 material-icons">chevron_right</i></a></li>
+ <li class="col s2 waves-effect %s"><a href="%s"><i class="material-icons">chevron_right</i></a></li>
</ul>
`, prevStatus, prevURL, start, end, total, nextStatus, nextURL)