-
Notifications
You must be signed in to change notification settings - Fork 26
/
manufacturer-list.tpl
125 lines (119 loc) · 5.39 KB
/
manufacturer-list.tpl
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{capture name=path}{l s='Manufacturers:'}{/capture}
{assign var='mediumDefaultWidth' value={getWidthSize|intval type='medium'}}
{assign var='mediumDefaultHeight' value={getHeightSize|intval type='medium'}}
{if ImageManager::retinaSupport()}
{assign var='mediumDefaultWidth' value=$mediumDefaultWidth * 2}
{assign var='mediumDefaultHeight' value=$mediumDefaultHeight * 2}
{/if}
<div class="product-listing page-heading">
<h1 class="pull-left product-listing-title">{l s='Brands'}</h1>
<div class="pull-right">
<span class="heading-counter badge">
{if $nbManufacturers == 0}
{l s='There are no manufacturers.'}
{else}
{if $nbManufacturers == 1}
{l s='There is 1 brand'}
{else}
{l s='There are %d brands' sprintf=$nbManufacturers}
{/if}
{/if}
</span>
</div>
</div>
{if isset($errors) AND $errors}
{include file="$tpl_dir./errors.tpl"}
{else}
{if $nbManufacturers > 0}
<div class="content_sortPagiBar clearfix">
<div class="form-inline sortPagiBar clearfix">
{if isset($manufacturer) && isset($manufacturer.nb_products) && $manufacturer.nb_products > 0}
{include file='./product-list-switcher.tpl'}
{/if}
{include file="./nbr-product-page.tpl"}
</div>
<div class="top-pagination-content form-inline clearfix">
{include file="$tpl_dir./pagination.tpl" no_follow=1}
</div>
</div>
<ul id="manufacturers_list" class="list-grid row">
{foreach from=$manufacturers item=manufacturer}
<li class="col-xs-6 col-sm-4 col-md-3">
<div class="thumbnail">
<a href="{$link->getmanufacturerLink($manufacturer.id_manufacturer, $manufacturer.link_rewrite)|escape:'html':'UTF-8'}" title="{$manufacturer.name|escape:'html':'UTF-8'}">
{if !empty($lazy_load)}
<noscript>
<img src="{Link::getGenericImageLink(
'manufacturers',
$manufacturer.id_manufacturer,
'medium',
(ImageManager::retinaSupport()) ? '2x' : ''
)|escape:'htmlall':'UTF-8'}"
alt="{$manufacturer.name|escape:'htmlall':'UTF-8'}"
width="{$mediumDefaultWidth}"
height="{$mediumDefaultHeight}"
>
</noscript>
{/if}
<picture class="img-responsive{if !empty($lazy_load)} tb-lazy-image{/if}">
<!--[if IE 9]>
<video style="display: none;"><![endif]-->
{if !empty($webp)}
<source {if !empty($lazy_load)}srcset="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII= 1w"
data-{/if}srcset="{Link::getGenericImageLink(
'manufacturers',
$manufacturer.id_manufacturer,
'medium',
(ImageManager::retinaSupport()) ? '2x' : '',
true
)|escape:'htmlall':'UTF-8'}"
sizes="1px"
type="image/webp"
>
{/if}
<!--[if IE 9]></video><![endif]-->
<img {if !empty($lazy_load)}srcset="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII= 1w"
data-{/if}srcset="{Link::getGenericImageLink(
'manufacturers',
$manufacturer.id_manufacturer,
'medium',
(ImageManager::retinaSupport()) ? '2x' : ''
)|escape:'htmlall':'UTF-8'}"
{if !empty($lazy_load)}src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="{/if}
sizes="1px"
alt="{$manufacturer.name|escape:'htmlall':'UTF-8'}"
width="{$mediumDefaultWidth}"
height="{$mediumDefaultHeight}"
>
</picture>
</a>
<div class="caption">
<h3 class="text-center">
<a href="{$link->getmanufacturerLink($manufacturer.id_manufacturer, $manufacturer.link_rewrite)|escape:'html':'UTF-8'}">
{$manufacturer.name|escape:'html':'UTF-8'}
</a>
</h3>
{if isset($manufacturer.nb_products)}
<p class="text-center">
{if $manufacturer.nb_products == 1}
{l s='%d product' sprintf=$manufacturer.nb_products|intval}
{else}
{l s='%d products' sprintf=$manufacturer.nb_products|intval}
{/if}
</p>
{/if}
{if !empty($manufacturer.short_description)}
<div class="rte">{$manufacturer.short_description}</div>
{/if}
</div>
</div>
</li>
{/foreach}
</ul>
<div class="content_sortPagiBar">
<div class="bottom-pagination-content form-inline clearfix">
{include file="$tpl_dir./pagination.tpl" no_follow=1 paginationId='bottom'}
</div>
</div>
{/if}
{/if}