Switch to side-by-side view

--- a/ForgeBlog/forgeblog/templates/search.html
+++ b/ForgeBlog/forgeblog/templates/search.html
@@ -13,19 +13,26 @@
     <title>$c.project.name / $c.app.config.options.mount_label / Search</title>
   </head>
   <body>
-    <h1>ForgeBlog Search</h1>
-    <form method="GET" action="search">
-      <input type="text" name="q" value="$q"/><br/>
-      Search history? <input type="checkbox" name="history" checked="${history or None}"/><br/>
-      <input type="submit" value="Search"/>
-    </form>
-    <p py:if="count==0 and q">No results.</p>
-    <p py:if="count==1 and q">$count result.</p>
-    <p py:if="count > 1 and q">$count results.</p>
-    <div py:for="doc in results">
-      <a href="${doc['url_s']}">$doc.title_s</a><br/>
-      <p>${doc.get('snippet_s', '...')}</p>
-      <hr/>
+    <h1 class="title">ForgeBlog Search</h1>
+    <div class="content">
+      <div class="row">
+        <div class="column grid_12">
+          <form method="GET" action="search">
+            <input type="text" name="q" value="$q"/><br/>
+            Search history? <input type="checkbox" name="history" checked="${history or None}"/><br/>
+            <input type="submit" value="Search"/>
+          </form>
+          <div style="clear: both">&nbsp;</div>
+          <p py:if="count==0 and q">No results.</p>
+          <p py:if="count==1 and q">$count result.</p>
+          <p py:if="count > 1 and q">$count results.</p>
+          <div py:for="doc in results">
+            <a href="${doc['url_s']}">$doc.title_s</a><br/>
+            <p>${doc.get('snippet_s', '...')}</p>
+            <hr/>
+          </div>
+        </div>
+      </div>
     </div>
   </body>