forked from MyCashflow/MyCashflow-Default-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
64 lines (64 loc) · 1.77 KB
/
homepage.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{Helper(file:'helpers/header')}
<div id="SidebarBg">
<div id="Main" class="clearfix">
{Helper(file:'helpers/sidebar-left')}
<div id="Primary" class="Column">
<div id="BannerScroller">
<div id="ScrollableBanners">
{CategoryImage(
width: 576,
before: '
<div class="FrontBanner" id="FrontpageCategoryImage">
',
after: '
<div class="BannerInfo">
<h3>{PageTitle}</h3>
</div>
</div>'
)}
{Banners(name:'frontpage',helper:'helpers/homepage-banners')}
</div>
</div>
<div id="LandingPageWrapper" class="clearfix">
<div id="PrimaryFeatures">
<div id="PageHeader">
<h1>{PageTitle}</h1>
{CategoryDescription}
</div>
<div id="ShopLikes" class="fb-like" data-send="true" data-width="354" data-show-faces="true" data-font="arial"></div>
{Products(
classes:'first|',
helper: 'helpers/listproduct'
)}
{NewProducts(
limit:6,
classes:'first|',
type:'normal',
timelimit:'-2 years',
before:'<h2 class="BoxHeader">{%NewProducts}</h2>',
helper: 'helpers/listproduct'
)}
</div>
<div id="SecondaryFeatures">
{TopSellers(
limit:10,
type:'normal',
helper:'helpers/listproduct-small',
before:'<h2 class="BoxHeader">{%BestsellingProducts}</h2><ol class="ProductList">',
after:'</ol>'
)}
{HotPicks(
limit:10,
type:'normal',
helper:'helpers/listproduct-small',
before:'<h2 class="BoxHeader">{%RecommendedProducts}</h2><ul class="ProductList">',
after:'</ul>'
)}
{SubCategories(before:'<h2 class="BoxHeader">{%BrowseCategories}</h2>')}
</div>
</div>
</div>
{Helper(file:'helpers/sidebar-right')}
</div>
</div>
{Helper(file:'helpers/footer')}