Switch to side-by-side view

--- a/ForgeSVN/forgesvn/templates/commit.html
+++ b/ForgeSVN/forgesvn/templates/commit.html
@@ -13,22 +13,37 @@
   </head>
 
   <body>
-    <h1 py:if="commit is None">Commit not found</h1>
+    <h1 py:if="commit is None" class="title">Commit not found</h1>
     <py:if test="commit is not None">
-      <a py:if="prev" href="$prev">Prev</a>
-      <a py:if="next" href="$next">Next</a>
-      <p py:if="commit is None">Unknown revision</p>
-      <py:if test="commit is not None">
-        ${c.revision_widget.display(value=commit)}
-        <table>
-          <tbody>
-            <tr py:for="kind, path in commit.diff_summarize()">
-              <td>$kind</td>
-              <td><a href="./tree/$path">$path</a></td>
-            </tr>
-          </tbody>
-        </table>
-      </py:if>
+      <h1 class="title">Revision 
+        <py:if test="commit is None">unknown</py:if>
+        <py:if test="commit is not None">$commit.revision.number</py:if>
+      </h1>
+      <div class="content">
+        <div class="row">
+          <div class="column grid_12">
+            <p py:if="commit is None">Unknown revision</p>
+            <py:if test="commit is not None">
+              ${c.revision_widget.display(value=commit)}
+              <div style="position: relative; height:2.5em">
+                <a py:if="prev" href="$prev"
+                   class="btn" style="position:absolute; top:0; left:0">&larr; Prev</a>
+                <div style="margin: 0 auto; width: 50px"><a href="${commit.tree().url()}" class="btn">Tree</a></div>
+                <a py:if="next" href="$next"
+                   class="btn" style="position:absolute; top:0; right:0">Next &rarr;</a>
+              </div>
+              <table>
+                <tbody>
+                  <tr py:for="kind, path in commit.diff_summarize()">
+                    <td>$kind</td>
+                    <td><a href="./tree/$path">$path</a></td>
+                  </tr>
+                </tbody>
+              </table>
+            </py:if>
+          </div>
+        </div>
+      </div>
     </py:if>
   </body>
 </html>