Files
media/templates/banner_viewer.tpl
2026-03-28 01:41:26 +05:00

13 lines
595 B
Smarty

<div class="media-container mb-3">
<a target="{$banner.target|default:'_blank'}"
href="index.php?module={$mod_path}&amp;id={$banner.id}"
class="d-block">
<img src="{$abs_path}modules/{$mod_path}/files/{$banner.banner_file}"
class="img-fluid rounded"
alt="{$banner.banner_name|escape}: {$banner.image_alt|escape}"
title="{$banner.banner_name|escape}"
{if $banner.width > 0}width="{$banner.width}"{/if}
{if $banner.height > 0}height="{$banner.height}"{/if}
loading="lazy">
</a>
</div>