-
Notifications
You must be signed in to change notification settings - Fork 15
/
brand-list.html
41 lines (41 loc) · 1.21 KB
/
brand-list.html
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
{Helper(file:'helpers/header')}
<div id="SidebarBg">
<div id="Main" class="clearfix">
{Helper(file:'helpers/sidebar-left')}
<div id="Primary" class="Column">
<div id="LandingPageWrapper" class="clearfix">
<div id="PrimaryFeatures">
{BrandImage(width:384,link:'true')}
<div id="PageHeader">
{Path}
<h1>{PageTitle}</h1>
</div>
<div class="CategoryDescription">{BrandDescription}</div>
{Products(
classes:'first|',
helper: 'helpers/listproduct'
)}
</div>
<div id="SecondaryFeatures">
{BrandLogo(link: 'false', width: '162', height: '108', before: '<div class="BrandLogoWrapper">', after: '</div>')}
{BrandTopSellers(
limit: 10,
type: 'normal',
helper: 'helpers/listproduct-small',
before: '<h2 class="BoxHeader">{%MostPopularProducts}</h2><ul class="ProductList">',
after: '</ul>'
)}
{BrandHotPicks(
limit: 10,
type: 'normal',
helper: 'helpers/listproduct-small',
before: '<h2 class="BoxHeader">{%RecommendedProducts}</h2><ul class="ProductList">',
after: '</ul>'
)}
</div>
</div>
</div>
{Helper(file:'helpers/sidebar-right')}
</div>
</div>
{Helper(file:'helpers/footer')}