-
Notifications
You must be signed in to change notification settings - Fork 15
/
category-front.html
43 lines (43 loc) · 1.16 KB
/
category-front.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
42
43
{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">
{CategoryImage(width:384,link:'true')}
<div id="PageHeader">
{Path}
<h1>{PageTitle}</h1>
</div>
<div class="CategoryDescription">{CategoryDescription}</div>
{CategoryHotPicks(
limit: 6,
classes:'first|',
helper: 'helpers/listproduct'
)}
{Products(
classes:'first|',
helper: 'helpers/listproduct'
)}
</div>
<div id="SecondaryFeatures">
{CategoryNewProducts(
limit: 10,
type: 'normal',
helper: 'helpers/listproduct-small',
before: '<h2 class="BoxHeader">{%NewProducts}</h2><ul class="ProductList">',
after: '</ul>'
)}
{SubCategories(before:'<h2 class="BoxHeader">{%BrowseCategories}</h2>')}
{Brands(
category: 'current',
before: '<h2 class="BoxHeader">{%Brands}</h2>'
)}
</div>
</div>
</div>
{Helper(file:'helpers/sidebar-right')}
</div>
</div>
{Helper(file:'helpers/footer')}