source: trunk/themes/smartpocket/template/comment_list.tpl @ 26805

Last change on this file since 26805 was 23713, checked in by flop25, 11 years ago

bug:2848
jquery.mobile updated
photoswipe updated
menubar is now a right panel, with almost all the usual links
added comment, search, picture, about and tags pages

ToDo:
*bug correction of the link added to the photoswipe toolbar (link doesn't triggered)
*display the calculated size on the picture page
limitations: no calendar view

File size: 471 bytes
Line 
1<ul data-role="listview" data-inset="true">
2  <li data-role="list-divider">{'User comments'|@translate}</li>
3{foreach from=$comments item=comment name=comment_loop}
4        <li>
5                {if !isset($from) or $from!="picture"}<a href="{$comment.U_PICTURE}">
6                <img src="{$pwg->derivative_url($thumbnail_derivative_params, $comment.src_image)}">{/if}
7    <h3>{$comment.AUTHOR}</h3>
8    <p>{$comment.CONTENT}</p>
9                {if !isset($from) or $from!="comment"}</a>{/if}
10  </li>
11{/foreach}
12</ul>
Note: See TracBrowser for help on using the repository browser.