Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / templates / hysteria / bookmarks.tpl
1 <!--
2 This program is free software. It comes without any warranty, to
3 the extent permitted by applicable law. You can redistribute it
4 and/or modify it under the terms of the Do What The Fuck You Want
5 To Public License, Version 2, as published by Sam Hocevar. See
6 http://sam.zoy.org/wtfpl/COPYING for more details.
7 -->
8
9 {include file="modules/header.tpl"}
10
11 <table width=100%>
12 <tr><td valign='top' width=12%>
13 {include file="modules/get_userlist.tpl"}
14 </td>
15
16 <td width=50%>
17 {get_bookmarks}
18 {foreach from=$get_bookmarks item=bookmark_category}
19 {* showing bookmark category *}
20 {if $bookmark_category.node_name neq false}
21 <a class='important' href='/id/{$bookmark_category.node_id}/'>{$bookmark_category.node_name}</a>
22 {if $bookmark_category.sum neq false}
23 :: <span class='most_important'> {$bookmark_category.sum} NEW</span>
24 {/if}
25 &nbsp;&nbsp;
26 {if $bookmark_category.on_main eq yes}
27 <a class='important' href='/id/{$node.node_id}/{$bookmark_category.node_id}'>^</a>
28 {else}
29 <a class='important' href='/id/{$node.node_id}/{$bookmark_category.node_id}'>^</a>
30 {/if}
31 {/if}
32
33 <br>
34
35 {if $bookmark_category.on_main neq 'no'}
36 {foreach from=$bookmark_category.children item=bookmarks}
37 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href='/id/{$bookmarks.node_id}'>{$bookmarks.node_name}</a>
38 {if $bookmarks.node_user_subchild_count neq false}
39 :: <span class='most_important'> {$bookmarks.node_user_subchild_count} NEW</span>
40 {/if}
41 <br>
42 {/foreach}
43 {/if}
44 <br>
45 {/foreach}
46
47 {include file="modules/addnode_small.tpl"}
48 </td></tr></table>
49
50 {include file="modules/footer.tpl"}
This page took 0.314687 seconds and 4 git commands to generate.