blob: 87d06fe5fc6904fa7fbd71a07a66e392aeedab42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{strip}
<div class="row" style="text-align:center;">
{* this should really get a max h or w and base size on the bounding box *}
{assign var=height value=$attachment.preferences.height}
{assign var=width value=$attachment.preferences.width}
{assign var=size value=$smarty.request.size|default:medium}
{assign var=swfwidth value=$gThumbSizes.$size.width}
{math assign=multiplier equation="$swfwidth/$width"}
{math assign=swfheight equation="round($height*$multiplier)"}
<object width="{$swfwidth}" height="{$swfheight}">
<param name="movie" value="{$attachment.source_url}" />
<embed src="{$attachment.source_url}" width="{$swfwidth}" height="{$swfheight}">
</embed>
<img src="{$smarty.const.LIBERTY_PKG_URL}templates/noflash.container.gif" width="200" height="100" alt="" />
</object>
</div>
<div class="pagination">
{tr}View other sizes{/tr}<br />
{foreach name=size key=size from=$attachment.thumbnail_url item=url}
<a href="{$attachment.display_url|escape}{if strpos($attachment.display_url,'?')}&{else}?{/if}size={$size}">{tr}{$size}{/tr}</a>
{if !$smarty.foreach.size.last} • {/if}
{/foreach}
</div>
{/strip}
{include file="bitpackage:liberty/mime_meta_inc.tpl"}
|