1234567891011121314151617181920212223242526272829303132333435363738 |
- <!--{template common/header}-->
- <!-- header start -->
- <header class="header">
- <div class="nav">
- <a href="home.php?mod=space&uid=1&do=profile&mycenter=1" class="z"><img src="{STATICURL}image/mobile/images/icon_back.png" /></a>
- <span>{lang mythread}</span>
- </div>
- </header>
- <!-- header end -->
- <!-- main threadlist start -->
- <div class="threadlist">
- <ul>
- <!--{if $list}-->
- <!--{loop $list $thread}-->
- <li>
- <!--{if $viewtype == 'reply' || $viewtype == 'postcomment'}-->
- <a href="forum.php?mod=redirect&goto=findpost&ptid=$thread[tid]&pid=$thread[pid]" target="_blank">$thread[subject]</a>
- <!--{else}-->
- <a href="forum.php?mod=viewthread&tid=$thread[tid]" target="_blank" {if $thread['displayorder'] == -1}class="grey"{/if}>$thread[subject]</a>
- <!--{/if}-->
- <span class="num">{$thread[replies]}</span>
- <!--{if in_array($thread['displayorder'], array(1, 2, 3, 4))}-->
- <span class="icon_top"><img src="{STATICURL}image/mobile/images/icon_top.png"></span>
- <!--{elseif $thread['attachment'] == 2}-->
- <span class="icon_tu"><img src="{STATICURL}image/mobile/images/icon_tu.png"></span>
- <!--{/if}-->
- </li>
- <!--{/loop}-->
- <!--{else}-->
- <li>{lang no_related_posts}</li>
- <!--{/if}-->
- </ul>
- $multi
- </div>
- <!-- main threadlist end -->
- <!--{eval $nofooter = true;}-->
- <!--{template common/footer}-->
|