Switch to side-by-side view

--- a/ForgeDiscussion/forgediscussion/templates/artifact.html
+++ b/ForgeDiscussion/forgediscussion/templates/artifact.html
@@ -18,36 +18,42 @@
   
   <body>
     <h1 class="title">${artifact.shorthand_id()}</h1>
-    <div>
-      <a href="..">ToolRoot</a>
-      <form style="display:inline; float:right"
-            method="GET"
-            action="../search">
-        Search: <input name="q"/>
-      </form>
+    <div class="content">
+      <div class="row">
+        <div class="column grid_12">
+          <div>
+            <a href="..">ToolRoot</a>
+            <form style="display:inline; float:right"
+                  method="GET"
+                  action="../search">
+              Search: <input name="q"/>
+            </form>
+          </div>
+          <a py:if="prev is not None" href=".?version=1">First</a>
+          <a py:if="prev is not None" href=".?version=$prev">&lt;</a>
+          Version $cur
+          <a py:if="next is not None" href=".?version=$ next">&gt;</a>
+          <a href=".">Latest</a>
+          <hr/>
+          <div>
+            <pre py:content="pformat(artifact)"/>
+          </div>
+
+          <hr/>
+          <h2>Comments</h2>
+          <div class="reply">
+            <h3>Make a comment</h3>
+            <form class="hidden" method="post" action="comments/reply">
+              <textarea rows="4" cols="60" name="text"></textarea><br/>
+              <input type="submit"/>
+            </form>
+          </div>
+          <py:for each="cmt in artifact.root_comments()">
+            ${display_comment(cmt)}
+          </py:for>
+        </div>
+      </div>
     </div>
-    <a py:if="prev is not None" href=".?version=1">First</a>
-    <a py:if="prev is not None" href=".?version=$prev">&lt;</a>
-    Version $cur
-    <a py:if="next is not None" href=".?version=$ next">&gt;</a>
-    <a href=".">Latest</a>
-    <hr/>
-    <div>
-      <pre py:content="pformat(artifact)"/>
-    </div>
-
-    <hr/>
-    <h2>Comments</h2>
-    <div class="reply">
-      <h3>Make a comment</h3>
-      <form class="hidden" method="post" action="comments/reply">
-        <textarea rows="4" cols="60" name="text"></textarea><br/>
-        <input type="submit"/>
-      </form>
-    </div>
-    <py:for each="cmt in artifact.root_comments()">
-      ${display_comment(cmt)}
-    </py:for>
   </body>
   <script type="text/javascript" src="${g.app_static('js/comments.js')}"/>
 </html>