diff options
author | James E. Blair <corvus@gnu.org> | 2009-07-27 22:05:01 -0700 |
---|---|---|
committer | James E. Blair <corvus@gnu.org> | 2009-07-27 22:05:01 -0700 |
commit | c5637f5007a77e242b46ea7012567c5a3e68f501 (patch) | |
tree | 3ee50d94ea8ae12a507d775b3bf5723dbd2793a9 | |
parent | c831b5cd80edefc0520e970e9a52a128c45fd8c7 (diff) |
Produce better URLs for pagination.
-rw-r--r-- | quoins/templates/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quoins/templates/index.html b/quoins/templates/index.html index 0935c20..cf447d4 100644 --- a/quoins/templates/index.html +++ b/quoins/templates/index.html | |||
@@ -58,10 +58,10 @@ | |||
58 | 58 | ||
59 | <div class="blog-paginate"> | 59 | <div class="blog-paginate"> |
60 | <span py:if="prev is not None"> | 60 | <span py:if="prev is not None"> |
61 | <a href="?start=${prev}">Previous five posts</a> | 61 | <a href="${url.current(start=prev)}">Previous five posts</a> |
62 | </span> | 62 | </span> |
63 | <span py:if="next is not None"> | 63 | <span py:if="next is not None"> |
64 | <a href="?start=${next}">Next five posts</a> | 64 | <a href="${url.current(start=next)}">Next five posts</a> |
65 | </span> | 65 | </span> |
66 | </div> <!-- blog-paginate --> | 66 | </div> <!-- blog-paginate --> |
67 | </div> <!-- blog-content --> | 67 | </div> <!-- blog-content --> |