Searching for one tag works. Two tags acts like or and returns multiple copies.
[zzz-floof.git] / floof / templates / base.mako
index 28003c5..19f8455 100644 (file)
@@ -8,6 +8,12 @@
 </head>
 <body>
 <div id="header">
+<a href="${h.url_for("/")}">Home</a>
+
+${h.form (h.url_for(controller="search", action="results"))}
+${h.text('query')} ${h.submit('search','Search')}
+${h.end_form()}
+
     <div id="user">
         % if c.user:
         <p>Logged in as ${c.user.name}</p>
@@ -20,6 +26,8 @@
         </form>
         % endif
     </div>
+
+
 </div>
 <div id="body">
 ${next.body()}