Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / templates / kyberia / links.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 {if $user_id eq false}
11 <center>{include file="modules/loginbox.tpl"}</center><br><br>
12 {/if}
13
14 <table width='100%'><tr>
15
16 <!--left column-->
17 <td valign='top' align='center' width='23%'>
18 {* show node info *}
19 {include file="modules/node_settings.tpl"}
20
21 {* showing poll *}
22 {get_poll}
23 {include file="modules/show_poll.tpl" get_poll=$get_poll}
24 <br>
25 {*showing bookmark_statistics*}
26 {include file="modules/get_bookmark_statistics_box.tpl"}
27 ~</td>
28 <!--end of left column-->
29
30 <!--main central column-->
31 <td width=666 valign='top'>
32 {*showing node_content*}
33 {*include file="modules/node_content.tpl"*}
34 {get_linked_nodes}
35 {foreach from=$get_linked_nodes item=child}
36 <table class='bordered' cellspacing='0' cellpadding='0'>
37 <tr>
38 <td align='center' valign='top' rowspan='2'>
39 <img vspace='5' hspace='5' width='50' src='{get_image_link id=$child.node_creator}'>
40 </td>
41
42 <td valign='top' style='width: 100%'>
43 <table width=100%>
44 <tr class='header' width=100% valign='top'><td>
45 &nbsp;<a href='/id/{$child.node_creator}'>{$child.creator}</a>
46 {if $child.user_action neq false}
47 &nbsp;[lokacia :: <a href='/{$child.user_action}/'>{$child.user_action}</a>]
48 {/if}
49 &nbsp;&nbsp;{$child.node_created|date_format:"%H:%M:%S - %d.%m.%Y"}&nbsp;
50 &nbsp;&nbsp;<input type='checkbox' value='{$child.node_id}' name='node_chosen[]'>
51 &nbsp;&nbsp;<a href='/id/{$child.node_id}'>enter</a>&nbsp;&nbsp;
52 {if $child.node_created > $node.last_visit}<span class='most_important'>&nbsp;&nbsp;NEW</span>{/if}
53 {if $child.node_children_count}<span class='most_important'>{$child.node_children_count}&nbsp;&nbsp;CHILDREN</span>{/if}
54 </td></tr>
55 <tr><td>{$child.node_content|stripslashes|nl2br}</td></tr>
56 </table>
57 </table>
58
59 {/foreach}
60
61 <!--end of central column-->
62
63 </td></tr></table>
64
65 {include file="modules/footer.tpl"}
This page took 0.278834 seconds and 4 git commands to generate.