--- a/ForgeTracker/forgetracker/templates/artifact.html
+++ b/ForgeTracker/forgetracker/templates/artifact.html
@@ -18,38 +18,44 @@
 
   <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>
-    <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>
+    <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 title-pane closed">
-      <h3 class="title">Make a comment</h3>
-      <div class="content">
-        <form method="post" action="comments/reply">
-          <textarea rows="4" cols="60" name="text"></textarea><br/>
-          <input type="submit"/>
-        </form>
+          <hr/>
+          <h2>Comments</h2>
+          <div class="reply title-pane closed">
+            <h3 class="title">Make a comment</h3>
+            <div class="content">
+              <form method="post" action="comments/reply">
+                <textarea rows="4" cols="60" name="text"></textarea><br/>
+                <input type="submit"/>
+              </form>
+            </div>
+          </div>
+          <py:for each="cmt in artifact.root_comments()">
+            ${display_comment(cmt)}
+          </py:for>
+        </div>
       </div>
     </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>