mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-05 17:32:25 +02:00
89bcc54ad7
Random caption is limited to 127 characters above and 255 below. git-svn-id: http://piwigo.org/svn/trunk@2638 68402e56-0260-453c-a942-63ccdbb3a9ee
15 lines
919 B
Smarty
15 lines
919 B
Smarty
|
|
<!-- random picture menu bar -->
|
|
<dt>{$block->get_title()}</dt>
|
|
<dd>
|
|
<div class="illustration" style="text-align:center;padding:5px;font-size:85%;">
|
|
{if $block->data.IMGNAME!="" and $block->data.SHOWNAME=="o"}{$block->data.IMGNAME}<br/>{/if}
|
|
{* No strip_tags because comment could have those for good reasons *}
|
|
{* Over comment is limited to 127 characters for look only *}
|
|
{if $block->data.IMGCOMMENT!="" and $block->data.SHOWCOMMENT=="o" and strlen($block->data.IMGCOMMENT) < 128}{$block->data.IMGCOMMENT}<br/>{/if}
|
|
<a href="{$block->data.LINK}"><img src="{$block->data.IMG}"/></a>
|
|
{if $block->data.IMGNAME!="" and $block->data.SHOWNAME=="u"}<br/>{$block->data.IMGNAME}{/if}
|
|
{* Under comment is limited to 255 characters *}
|
|
{if $block->data.IMGCOMMENT!="" and $block->data.SHOWCOMMENT=="u" and strlen($block->data.IMGCOMMENT) < 256}<br/>{$block->data.IMGCOMMENT}{/if}
|
|
</div>
|
|
</dd> |