From 61fd79d76b35cc957a0fbe75416fed8c72bad710 Mon Sep 17 00:00:00 2001 From: Michael Rasmussen Date: Wed, 3 Jun 2015 23:26:01 +0200 Subject: [PATCH] Navigate using icons --- index.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/index.php b/index.php index 1482893..42e4130 100644 --- a/index.php +++ b/index.php @@ -71,10 +71,10 @@ if ($pageNum > 1) { $page = $pageNum - 1; - $prev = "[[\"Previous\"]"; - $first = "[\"First\"]"; + $prev = " [\"Previous\" | "; + $first = " \"First\" "; } else { $prev = ' '; // we're on page one, don't print previous link $first = ' '; // nor the first page link @@ -82,10 +82,10 @@ if ($pageNum < $maxPage) { $page = $pageNum + 1; - $next = "[[\"Next\"]"; - $last = "[\"Last\"]"; + $next = " \"Next\" | "; + $last = " \"Last\" "; } else { $next = ' '; // we're on the last page, don't print next link $last = ' '; // nor the last page link -- 2.39.2