summaryrefslogtreecommitdiff
path: root/demos/blog-tutorial/samples/day5/blog/protected/pages/posts/PostRenderer.tpl
blob: 8f4a05028514f6be2cbcc2221529e5f1d217bc8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="post-box">
<h3>
<com:THyperLink Text="<%# $this->Data->title %>"
	NavigateUrl="<%# $this->Service->constructUrl('posts.ReadPost',array('id'=>$this->Data->post_id)) %>" />
</h3>

<p>
Author:
<com:TLiteral Text="<%# $this->Data->author->username %>" /><br/>
Time:
<com:TLiteral Text="<%# date('m/d/Y h:m:sa', $this->Data->create_time) %>" />
</p>

<p>
<com:TLiteral Text="<%# $this->Data->content %>" />
</p>
</div>