source: main/waeup.sirp/trunk/src/waeup/sirp/browser/templates/searchpage.pt @ 6225

Last change on this file since 6225 was 4789, checked in by uli, 15 years ago

Merge changes from ulif-layout back into trunk (finally).

File size: 543 bytes
Line 
1<h3>Search the site</h3>
2<form method="post">
3  <input type="text" name="query"
4         tal:attributes="value view/query" />
5    <input type="submit" name="SUBMIT" value="search..." />
6</form>
7<div tal:condition="view/hitlist">
8  <h4>Results (<span tal:replace="python: len(view.hitlist)" />):</h4>
9  <div tal:repeat="item view/hitlist">
10    <a href=""
11       tal:attributes="href item/url"
12       tal:content="item/title">Search Item Title</a>
13    <div tal:content="item/description">
14      Longer description of item...
15    </div>
16  </div>
17</div>
Note: See TracBrowser for help on using the repository browser.