diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-05 11:43:53 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-05 11:43:53 -0800 |
commit | f8b0d0f4c2b756b148130c60b868596c7c0cfa67 (patch) | |
tree | ad4017ae9f4cb9b6768c1c0cf3209996c1cd6eef /system/admin/handlers.go | |
parent | 579cc9259a7761610a9997f2e0f390716b98e454 (diff) |
fixing pagination html
Diffstat (limited to 'system/admin/handlers.go')
-rw-r--r-- | system/admin/handlers.go | 4 |
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) |