additional_plugins/alpha/serendipity_event_picasa/tnt_gallery.tpl
Matthias Mees 24ee209520 Move deprecated plugins to alpha, a.k.a. Siberia
These plugins have been identified as deprecatable at #s9ycamp2017.
They use service that no longer exist or provide features that no
longer make sense or have been replaced.

We won't miss them.

References s9y/Serendipity#499
2017-04-13 20:53:16 +02:00

24 lines
947 B
Smarty

<h4 class='serendipity_event_picasa'>{$serendipity_event_picasa_albumName}</h4>
{if $serendipity_event_picasa_albumCaption}
<h5 class='serendipity_event_picasa'>{$serendipity_event_picasa_albumCaption}</h5>
{/if}
<table width="100%">
<tr>
<td style="vertical-align:top">
{foreach from=$serendipity_event_picasa_images item=image}
<img
style="cursor:pointer"
onClick="serendipity_event_picasa_galleryimg.src='{$image.itemLargeImage}'"
src="{$image.itemThumbnailImage}"
height="{$image.itemThumbnailHeight}"
width="{$image.itemThumbnailWidth}"
alt="{$image.itemCaption}" />
{/foreach}
</td>
<td style="vertical-align:top">
<img id="serendipity_event_picasa_galleryimg" src="{$serendipity_event_picasa_images[0].firstImage}" alt="" />
</td>
</tr>
</table>