71 lines
2.1 KiB
Smarty
71 lines
2.1 KiB
Smarty
<!-- begining template content_manufacturers_details.tpl -->
|
|
<div class="full_box">
|
|
<div class="title_wrapper">
|
|
<h1>{$manufacturer->name}</h1>
|
|
</div>
|
|
<br />
|
|
<div class="box_content">
|
|
<div class="box_padder">
|
|
<div class="manufacturer">
|
|
<div class="data">
|
|
{if $manufacturer->logo != ''}
|
|
<img src="{$SHOP_DIR}images/manufacturers/{$manufacturer->logo}" />
|
|
<div class="description_part"><p style="padding:15px;">{$manufacturer->description}</p></div>
|
|
<br style="clear: both;" />
|
|
{else}
|
|
<div class="description_full"><p style="padding:15px;">{$manufacturer->description}</p></div>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<div class="manufacturerStructureList">
|
|
<strong>{$manufacturer->name} Produkte finden Sie bei uns in folgenden Kategorien:</strong><br />
|
|
<br />
|
|
{foreach item=structureItem from=$structureItems}
|
|
{if $structureItem->parent_id != 0}
|
|
<div class="manufacturer_categorie">
|
|
>> <a href="/Kaufen/{$manufacturer->short_uri}/{$structureItem->short_uri}/">{if $structureItem->path}{$structureItem->path}->{/if}{$structureItem->name}</a> |
|
|
</div>
|
|
{/if}
|
|
{/foreach}
|
|
<div style="clear:both;"></div>
|
|
</div>
|
|
|
|
<div style="clear:both;display:block;height:20px;"></div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{if $manufacturer_items}
|
|
<div class="content_box_item_list">
|
|
<div class="box_content">
|
|
<div class="title_wrapper" style="height:45px;">
|
|
<div class="title" style="width:400px;"><h3>{$manufacturer->name} Produkte aus unserem Sortiment</h3></div>
|
|
</div>
|
|
<br>
|
|
{foreach $manufacturer_items as $shopArticle}
|
|
{if $shopArticle->short_uri}
|
|
{assign var=itemSuri value="`$currentSURI``$shopArticle->short_uri`.html"}
|
|
{else}
|
|
{assign var=itemSuri value="/index.php?item_id=`$shopArticle->id`"}
|
|
{/if}
|
|
|
|
{include file='content_item_list/item_box_3.tpl'}
|
|
{/foreach}
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
|
|
</div>
|
|
|
|
<!-- end template content_manufacturers_details.tpl -->
|
|
|
|
|
|
|
|
|
|
|