forumdisplay.htm
2.97 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!--{template common/header}-->
<!-- header start -->
<header class="header">
<div class="nav">
<div class="icon_edit y"><a href="forum.php?mod=post&action=newthread&fid=$_G[fid]" title="{lang send_threads}"><span class="none">{lang send_threads}</span></a></div>
<a href="forum.php?forumlist=1" class="z"><img src="{STATICURL}image/mobile/images/icon_back.png" /></a>
<span class="category">
<!--{if $subexists && $_G['page'] == 1}-->
<span class="display name vm" href="#subname_list">
<h2 class="tit"><!--{eval echo strip_tags($_G['forum']['name']) ? strip_tags($_G['forum']['name']) : $_G['forum']['name'];}--></h2>
<img src="{STATICURL}image/mobile/images/icon_arrow_down.png">
</span>
<div id="subname_list" class="subname_list" display="true" style="display:none;">
<ul>
<!--{loop $sublist $sub}-->
<li>
<a href="forum.php?mod=forumdisplay&fid={$sub[fid]}">{$sub['name']}</a>
</li>
<!--{/loop}-->
</ul>
</div>
<!--{else}-->
<span class="name">
<!--{eval echo strip_tags($_G['forum']['name']) ? strip_tags($_G['forum']['name']) : $_G['forum']['name'];}-->
</span>
<!--{/if}-->
</span>
</div>
</header>
<!-- header end -->
<!--{hook/forumdisplay_top_mobile}-->
<!-- main threadlist start -->
<!--{if !$subforumonly}-->
<div class="threadlist">
<ul>
<!--{if $_G['forum_threadcount']}-->
<!--{loop $_G['forum_threadlist'] $key $thread}-->
<!--{if !$_G['setting']['mobile']['mobiledisplayorder3'] && $thread['displayorder'] > 0}-->
{eval continue;}
<!--{/if}-->
<!--{if $thread['displayorder'] > 0 && !$displayorder_thread}-->
{eval $displayorder_thread = 1;}
<!--{/if}-->
<!--{if $thread['moved']}-->
<!--{eval $thread[tid]=$thread[closed];}-->
<!--{/if}-->
<li>
<!--{hook/forumdisplay_thread_mobile $key}-->
<a href="forum.php?mod=viewthread&tid=$thread[tid]&extra=$extra" $thread[highlight] >
{$thread[subject]}
<span class="by">$thread[author]</span>
</a>
<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['digest'] > 0}-->
<span class="icon_top"><img src="{STATICURL}image/mobile/images/icon_digest.png"></span>
<!--{elseif $thread['attachment'] == 2 && $_G['setting']['mobile']['mobilesimpletype'] == 0}-->
<span class="icon_tu"><img src="{STATICURL}image/mobile/images/icon_tu.png"></span>
<!--{/if}-->
</li>
<!--{/loop}-->
<!--{else}-->
<li>{lang forum_nothreads}</li>
<!--{/if}-->
</ul>
</div>
$multipage
<!--{/if}-->
<!-- main threadlist end -->
<!--{hook/forumdisplay_bottom_mobile}-->
<div class="pullrefresh" style="display:none;"></div>
<!--{template common/footer}-->