Switch to side-by-side view

--- a/ForgeSVN/forgesvn/templates/tree.html
+++ b/ForgeSVN/forgesvn/templates/tree.html
@@ -13,14 +13,17 @@
   </head>
 
   <body>
-    <div py:if="tree" style="background-color:#ddd;-moz-border-radius:5px;padding:1em;">
       <h1 py:if="tree is None">No files</h1>
       <py:if test="tree is not None">
-        <a href="${tree._commit.url()}">@r${tree._commit._id}</a>:
-        ${path_links(tree.path().split('/')[1:-1])}
-        <br/>
-        ${c.tree_widget.display(tree=tree)}
+        <h1 class="title"><a href="${tree._commit.url()}">Revision ${tree._commit._id}</a>:
+        ${path_links(tree.path().split('/')[1:-1])}</h1>
+        <div class="content">
+          <div class="row">
+            <div class="column grid_12">
+              ${c.tree_widget.display(tree=tree)}
+            </div>
+          </div>
+        </div>
       </py:if>
-    </div>
   </body>
 </html>