831 |
florian |
1 |
<div class="PhorumNavBlock">
|
|
|
2 |
<span class="PhorumNavHeading">{LANG->Goto}:</span> {IF URL->INDEX}<a class="PhorumNavLink" href="{URL->INDEX}">{LANG->ForumList}</a>•{/IF}<a class="PhorumNavLink" href="{URL->SEARCH}">{LANG->Search}</a>•{INCLUDE loginout_menu}
|
|
|
3 |
</div>
|
|
|
4 |
<table id="phorum-index" cellspacing="0">
|
|
|
5 |
{LOOP FORUMS}
|
|
|
6 |
{IF FORUMS->folder_flag}
|
|
|
7 |
<tr class="folder">
|
|
|
8 |
{IF FORUMS->forum_id FORUMS->vroot}
|
|
|
9 |
<th class="forum-name">{LANG->Forums}</th>
|
|
|
10 |
{ELSE}
|
|
|
11 |
<th class="forum-name"><a href="{FORUMS->url}">{FORUMS->name}</a></th>
|
|
|
12 |
{/IF}
|
|
|
13 |
<th class="forum-threads">{LANG->Threads}</th>
|
|
|
14 |
<th class="forum-posts">{LANG->Posts}</th>
|
|
|
15 |
<th class="forum-last-post">{LANG->LastPost}</th>
|
|
|
16 |
</tr>
|
|
|
17 |
{ELSE}
|
|
|
18 |
<tr class="forum">
|
|
|
19 |
<td class="forum-name">
|
|
|
20 |
<a href="{FORUMS->url}">{FORUMS->name}</a><p>{FORUMS->description}</p><small>{LANG->Options}: {IF LOGGEDIN true}<a href="{FORUMS->url_markread}">{LANG->MarkForumRead}</a>{/IF}{IF FORUMS->url_rss}{IF LOGGEDIN true} • {/IF}<a href="{FORUMS->url_rss}">{LANG->RSS}</a>{/IF}</small>
|
|
|
21 |
</td>
|
|
|
22 |
<td class="forum-threads" nowrap="nowrap">
|
|
|
23 |
{FORUMS->thread_count}
|
|
|
24 |
{IF FORUMS->new_threads}
|
|
|
25 |
(<span class="PhorumNewFlag">{FORUMS->new_threads} {LANG->newflag}</span>)
|
|
|
26 |
{/IF}
|
|
|
27 |
</td>
|
|
|
28 |
<td class="forum-posts" nowrap="nowrap">
|
|
|
29 |
{FORUMS->message_count}
|
|
|
30 |
{IF FORUMS->new_messages}
|
|
|
31 |
(<span class="PhorumNewFlag">{FORUMS->new_messages} {LANG->newflag}</span>)
|
|
|
32 |
{/IF}
|
|
|
33 |
</td>
|
|
|
34 |
<td class="forum-last-post" nowrap="nowrap">{FORUMS->last_post}</td>
|
|
|
35 |
</tr>
|
|
|
36 |
{/IF}
|
|
|
37 |
{/LOOP FORUMS}
|
|
|
38 |
</table>
|