--- a/ForgeDiscussion/forgediscussion/templates/search.html
+++ b/ForgeDiscussion/forgediscussion/templates/search.html
@@ -14,20 +14,26 @@
</head>
<body>
<h1 class="title">Search $c.app.config.options.mount_point: $q</h1>
- <form method="GET" action=".">
- <input type="text" name="q" value="$q" class="defaultText" title="Search App"/><br/>
- <input type="submit" value="Search App" class="ui-state-default ui-button ui-button-text"/>
- <input type="submit" name="project" value="Search Entire Project"
- class="ui-state-default ui-button ui-button-text"/><br/>
- Search history? <input type="checkbox" name="history" checked="${history or None}"/><br/>
- </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 py:if="doc.get('snippet')">$doc.snippet</p>
- <hr/>
+ <div class="content">
+ <div class="row">
+ <div class="column grid_12">
+ <form method="GET" action=".">
+ <input type="text" name="q" value="$q" class="defaultText" title="Search App"/><br/>
+ <input type="submit" value="Search App" class="ui-state-default ui-button ui-button-text"/>
+ <input type="submit" name="project" value="Search Entire Project"
+ class="ui-state-default ui-button ui-button-text"/><br/>
+ Search history? <input type="checkbox" name="history" checked="${history or None}"/><br/>
+ </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 py:if="doc.get('snippet')">$doc.snippet</p>
+ <hr/>
+ </div>
+ </div>
+ </div>
</div>
</body>