| 1 |
lars |
1 |
<com:TContent ID="body">
|
|
|
2 |
<div class="quicksearch">
|
|
|
3 |
<div class="search">
|
|
|
4 |
<com:SearchBox ID="search" />
|
|
|
5 |
</div>
|
|
|
6 |
|
|
|
7 |
<com:TRepeater id="quickstart_results">
|
|
|
8 |
<prop:HeaderTemplate>
|
|
|
9 |
<div class="searchHeader">
|
|
|
10 |
Found <%# $this->Parent->DataSource->Count %> results in the Quickstart Tutorial.
|
|
|
11 |
</div>
|
|
|
12 |
</prop:HeaderTemplate>
|
|
|
13 |
<prop:ItemTemplate>
|
|
|
14 |
<div class="searchItem">
|
|
|
15 |
<div class="searchItemLink">
|
|
|
16 |
<%# $this->ItemIndex + 1 %>.
|
|
|
17 |
<a href="<%# $this->DataItem->link %>">
|
|
|
18 |
<%# $this->DataItem->title %>
|
|
|
19 |
</a>
|
|
|
20 |
</div>
|
|
|
21 |
<p class="searchItemBody"><%# $this->Page->HighlightSearch($this->DataItem->text) %></p>
|
|
|
22 |
</div>
|
|
|
23 |
</prop:ItemTemplate>
|
|
|
24 |
</com:TRepeater>
|
|
|
25 |
<com:TPanel id="emptyResult" CssClass="empty_search_result" Visible="false">
|
|
|
26 |
No results available for "<%= htmlentities($this->Page->search->Text) %>".
|
|
|
27 |
</com:TPanel>
|
|
|
28 |
</div>
|
|
|
29 |
<div class="last-modified">$Id: Search.page 1859 2007-04-10 21:27:01Z xue $</div></com:TContent>
|