From 0213eec3af5e74f29bdd384b7d2e1fde47c1c6d3 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Tue, 13 Jan 2015 13:54:54 -0500 Subject: [PATCH] Modified pagination template Switched from four .four.column divs (one for firstPage, previousPage, nextPage, and lastPage) to two .eight.column divs (one for firstPage and previousPage, and the other for nextPage and lastPage). This is mostly an ascetic fix that will be modified in the future when I get around to theming the pagination buttons. Signed-off-by: Collin J. Doering --- templates/partials/pagination.haml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/partials/pagination.haml b/templates/partials/pagination.haml index 63638e0..2f31406 100644 --- a/templates/partials/pagination.haml +++ b/templates/partials/pagination.haml @@ -1,5 +1,5 @@ #pagination.container - .four.columns.alpha + .eight.columns.alpha $if(firstPageUrl)$ $if(firstPageUrlVirtualPath)$ %a.firstPage(rel="address:$firstPageUrlVirtualPath$" href="$firstPageUrl$") First Page @@ -7,7 +7,7 @@ %a.firstPage(href="$firstPageUrl$") First Page $endif$ $endif$ - .four.columns + $if(previousPageUrl)$ $if(previousPageUrlVirtualPath)$ %a.previousPage(rel="address:$previousPageUrlVirtualPath$" href="$previousPageUrl$") Previous Page @@ -15,7 +15,7 @@ %a.previousPage(href="$previousPageUrl$") Previous Page $endif$ $endif$ - .four.columns + .eight.columns $if(nextPageUrl)$ $if(nextPageUrlVirtualPath)$ %a.nextPage(rel="address:$nextPageUrlVirtualPath$" href="$nextPageUrl$") Next Page @@ -23,7 +23,7 @@ %a.nextPage(href="$nextPageUrl$") Next Page $endif$ $endif$ - .four.colums.omega + $if(lastPageUrl)$ $if(lastPageUrlVirtualPath)$ %a.lastPage(rel="address:$lastPageUrlVirtualPath$" href="$lastPageUrl$") Last Page