--- a/ForgeWiki/forgewiki/templates/browse.html
+++ b/ForgeWiki/forgewiki/templates/browse.html
@@ -14,7 +14,7 @@
</head>
<body>
<h1>Browse Pages</h1>
- View: <a href="browse?sort=recent">Recently Updated</a> | <a href="browse?sort=alpha">Alphabetical</a>
+ View: <a href="?sort=recent">Recently Updated</a> | <a href="?sort=alpha">Alphabetical</a>
<table id="forge_wiki_browse">
<thead>
<tr>
@@ -25,7 +25,7 @@
</thead>
<tbody>
<tr py:for="page in pages">
- <td><a href="${page['title']}">${page['title']}</a></td>
+ <td><a href="../${page['title']}">${page['title']}</a></td>
<td py:if="'user_label' in page">${page['user_label']}</td>
<td py:if="'user_label' not in page"></td>
<td py:if="'updated' in page">${helpers.ago(page['updated'])}</td>