| 1 | {include file="modules/header.tpl"} |
| 2 | |
| 3 | <ul id="bookmarks"> |
| 4 | |
| 5 | {get_bookmarks} |
| 6 | {foreach from=$get_bookmarks item=bookmark_category} |
| 7 | |
| 8 | {if $bookmark_category.node_name neq false} |
| 9 | <li><h1>{$bookmark_category.node_name}</h1></li> |
| 10 | {else} |
| 11 | <li>{$bookmark_category.node_id}</li> |
| 12 | {/if} |
| 13 | |
| 14 | {foreach from=$bookmark_category.children item=bookmarks} |
| 15 | <ul> |
| 16 | |
| 17 | {if $bookmarks.node_name} |
| 18 | <li> |
| 19 | <a href='/id/{$bookmarks.node_id}'>{$bookmarks.node_name}</a> |
| 20 | |
| 21 | {if $bookmarks.node_user_subchild_count neq false} |
| 22 | <strong>({$bookmarks.node_user_subchild_count} New Children)</strong> |
| 23 | {/if} |
| 24 | |
| 25 | {if $bookmarks.lastdescendant_created > $bookmarks.last_visit} |
| 26 | <strong>(New descendant)</strong> |
| 27 | {/if} |
| 28 | </li> |
| 29 | {/if} |
| 30 | |
| 31 | </ul> |
| 32 | {/foreach} |
| 33 | |
| 34 | {/foreach} |
| 35 | |
| 36 | </ul> |