Line | |
---|
1 | <ul> |
---|
2 | {foreach from=$comments item=comment} |
---|
3 | <li> |
---|
4 | {if isset($comment.TN_SRC)} |
---|
5 | <div class="illustration"> |
---|
6 | <a href="{$comment.U_PICTURE}"><img src="{$comment.TN_SRC}" alt="{$comment.ALT}" /></a> |
---|
7 | </div> |
---|
8 | {/if} |
---|
9 | <div class="description"> |
---|
10 | {if isset($comment.U_DELETE) or isset($comment.U_VALIDATE) } |
---|
11 | <ul class="actions"> |
---|
12 | {if isset($comment.U_DELETE)} |
---|
13 | <li><a href="{$comment.U_DELETE}" title="{'delete this comment'|@translate}">{'delete'|@translate}</a></li> |
---|
14 | {/if} |
---|
15 | {if isset($comment.U_VALIDATE)} |
---|
16 | <li><a href="{$comment.U_VALIDATE}" title="{'validate this comment'|@translate}">{'validate'|@translate}</a></li> |
---|
17 | {/if} |
---|
18 | </ul> |
---|
19 | {/if} |
---|
20 | <span class="author">{$comment.AUTHOR}</span> - <span class="date">{$comment.DATE}</span> |
---|
21 | <blockquote>{$comment.CONTENT}</blockquote> |
---|
22 | </div> |
---|
23 | </li> |
---|
24 | {/foreach} |
---|
25 | </ul> |
---|
26 | <div style="clear: both;"></div> |
---|
Note: See
TracBrowser
for help on using the repository browser.