Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / templates / kyberia / 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 valign='top' width=50%>
17 23
18
19 <center>
20
21 </center>
22 {get_bookmarks}
23 {foreach from=$get_bookmarks item=bookmark_category}
24 {* showing bookmark category *}
25 {if $bookmark_category.node_name neq false && $bookmarks.node_id neq ''}
26 <a class='important' href='/id/{$bookmark_category.node_id}/'>{$bookmark_category.node_name}</a>
27 {if $bookmark_category.sum neq false}
28 :: <span class='most_important'> {$bookmark_category.sum} NEW</span>
29 {/if}
30 &nbsp;&nbsp;
31 {if $bookmark_category.on_main eq yes}
32 <a class='important' href='/id/{$node.node_id}/{$bookmark_category.node_id}'>^</a>
33 {else}
34 <a class='important' href='/id/{$node.node_id}/{$bookmark_category.node_id}'>^</a>
35 {/if}
36 {/if}
37 <br>
38 {if $bookmark_category.on_main neq 'no'}
39 {foreach from=$bookmark_category.children item=bookmarks}
40 {if $bookmarks.node_name neq false && $bookmarks.node_id neq ''}
41 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href='/id/{$bookmarks.node_id}'>{$bookmarks.node_name}</a>
42 {if $bookmarks.node_user_subchild_count neq false}
43 :: <span class='most_important'> {$bookmarks.node_user_subchild_count} NEW CHILDREN</span>
44 {/if}
45 {if $bookmarks.lastdescendant_created > $bookmarks.last_visit}
46 :: <span class='most_important'>!!NEW DESCENDANT!!</span>
47 {/if}
48
49 {/if}
50 <br>
51 {/foreach}
52 {/if}
53 <br>
54 {/foreach}
55
56 {include file="modules/addnode_small.tpl"}
57
58
59 </td></tr></table>
60
61 {include file="modules/footer.tpl"}
This page took 0.267624 seconds and 4 git commands to generate.