--- a/ForgeChat/forgechat/templates/search.html
+++ b/ForgeChat/forgechat/templates/search.html
@@ -13,19 +13,25 @@
<title>$c.project.name / $c.app.config.options.mount_label / Search</title>
</head>
<body>
- <h1>ForgeChat 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/>
- <pre>${pformat(doc)}</pre>
- <hr/>
+ <h1 class="title">ForgeChat 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>
+ <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/>
+ <pre>${pformat(doc)}</pre>
+ <hr/>
+ </div>
+ </div>
+ </div>
</div>
</body>