shop-old/themes/easyshop_advanced/templates/content_box_substructure.tpl
2026-04-20 01:03:43 +02:00

42 lines
1.6 KiB
Smarty

<div class="content_box_structure_list">
{if !$user_lang || $user_lang == $system_configuration.default_system_language || !$block->title_en}
<div class="header">
<{$block->style}>{$block->title}</{$block->style}>
</div>
{else}
<div class="header">
<{$block->style}>{$block->title_en}</{$block->style}>
</div>
{/if}
<div class="content">
{foreach item=structure from=$substructures}
{if $structure->active == 1}
<div class="structure_item">
<a title="{if $structure->image_alt_text}{$structure->image_alt_text}{else}{$structure->name}{/if}" href="{$structure->short_uri}/">
<div class="structure_item_text_sign">
<strong>»</strong>
</div>
<div class="structure_item_text">
{if !$user_lang || $user_lang == $system_configuration.default_system_language || !$structure->name_en}
<span>{$structure->name}</span>
{else}
<span>{$structure->name_en}</span>
{/if}
</div>
<div class="image_wrapper" style="text-align:center;text-valign:middle;">
<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td align="center" valign="middle">
<img src="{$SHOP_DIR}images/structure/{$structure->image}" border="0" alt="{if $structure->image_alt_text}{$structure->image_alt_text}{else}{$structure->name}{/if}" />
</td></tr></table>
</div>
</a>
</div>
{/if}
{/foreach}
<br style="clear:left;" />
</div>
</div>