blob: e3a71d44fbbe6c0b1621fd90a83f9dd8160a646d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<com:TContent ID="Main">
<div class="search-title">
Search results for <b><%= htmlentities($this->Request['keyword'],ENT_QUOTES,'UTF-8') %></b>:
</div>
<com:TRepeater ID="PostList" EnableViewState="false">
<prop:ItemTemplate>
<div class="post">
<div class="post-title">
<%# $this->DataItem->Title %>
</div>
<div class="post-time">
<%# date('l, F j, Y \a\t h:i:s a',$this->DataItem->CreateTime) %>
</div>
<div class="post-content">
<%# $this->DataItem->Content %>
</div>
<div class="post-footer">
posted by
<%# '<a href="' . $this->Service->constructUrl('Users.ViewUser',array('id'=>$this->DataItem->AuthorID)) . '">' . $this->DataItem->AuthorName . '</a>' %>
|
<%# '<a href="' . $this->Service->constructUrl('Posts.ViewPost',array('id'=>$this->DataItem->ID)) . '">PermaLink</a>' %>
|
<%# '<a href="' . $this->Service->constructUrl('Posts.ViewPost',array('id'=>$this->DataItem->ID)) . '#comments">Comments (' . $this->DataItem->CommentCount . ')</a>' %>
</div>
</div>
</prop:ItemTemplate>
</com:TRepeater>
<div class="postlist-pager">
<com:THyperLink
ID="PrevPage"
Visible="false"
Text="< Previous Page"
/>
<com:THyperLink
ID="NextPage"
Visible="false"
Text="Next Page >"
/>
</div>
</com:TContent>
|