| 20424 |
kshitij.so |
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
3 |
<head>
|
|
|
4 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
| 20430 |
kshitij.so |
5 |
<title>Hotspot Store</title>
|
| 20424 |
kshitij.so |
6 |
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
|
|
|
7 |
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
|
|
|
8 |
<script src="js/slick.min.js" type="text/javascript"></script>
|
|
|
9 |
#set($banners = $action.getActiveBanners())
|
|
|
10 |
#set($snippetMap = $action.getSnippetMap())
|
|
|
11 |
#include ( "templates/commoncssfiles.vm" )
|
|
|
12 |
#include ("templates/commonjsfiles.vm" )
|
|
|
13 |
<link rel="stylesheet" type="text/css" href="css/slick.css"/>
|
|
|
14 |
<link rel="stylesheet" type="text/css" href="css/slick-theme.css"/>
|
|
|
15 |
|
|
|
16 |
</head>
|
|
|
17 |
|
|
|
18 |
<body>
|
|
|
19 |
#include("templates/header.vm")
|
|
|
20 |
|
|
|
21 |
<!--Slide Area Starts Here-->
|
|
|
22 |
|
|
|
23 |
<div class="fade">
|
|
|
24 |
#foreach($banner in $banners)
|
|
|
25 |
<div>
|
| 20581 |
kshitij.so |
26 |
<a href="$banner.getLink()" #if(!$banner.isSameWindowTarget())target="_blank"#end>
|
|
|
27 |
<img style="width:100%; height:auto;" src="images/banners/$banner.getImageName()"/>
|
| 20579 |
kshitij.so |
28 |
</a>
|
| 20424 |
kshitij.so |
29 |
</div>
|
|
|
30 |
#end
|
|
|
31 |
</div>
|
|
|
32 |
|
|
|
33 |
<script type="text/javascript">
|
|
|
34 |
$(document).ready(function(){
|
|
|
35 |
$('.fade').slick({
|
|
|
36 |
dots: true,
|
|
|
37 |
infinite: true,
|
|
|
38 |
speed: 300,
|
|
|
39 |
//fade: true,
|
|
|
40 |
arrows: false,
|
|
|
41 |
cssEase: 'linear',
|
|
|
42 |
autoplay: true,
|
|
|
43 |
});
|
|
|
44 |
});
|
|
|
45 |
</script>
|
|
|
46 |
<!--Slide Area Ends Here-->
|
|
|
47 |
|
|
|
48 |
|
|
|
49 |
<!--Latest Mobile Area Starts Here-->
|
|
|
50 |
|
|
|
51 |
#if($snippetMap.get('latest-phones'))
|
|
|
52 |
<div class="mobileContentArea">
|
|
|
53 |
<h4>Latest Arrivals</h4>
|
|
|
54 |
<ul class="mobileArea_ulList">
|
|
|
55 |
#foreach($entity in $snippetMap.get('latest-phones'))
|
|
|
56 |
<a href="$entity.getUrl()">
|
|
|
57 |
<li class="mobileArea_liList">
|
|
|
58 |
<img src="$entity.getThumbnail()" />
|
|
|
59 |
<p style="font-weight:bold;">$entity.getTitle()</p>
|
|
|
60 |
</li>
|
|
|
61 |
</a>
|
|
|
62 |
#end
|
|
|
63 |
</ul>
|
|
|
64 |
</div>
|
|
|
65 |
#end
|
|
|
66 |
#if($snippetMap.get('best-sellers'))
|
|
|
67 |
<div class="mobileContentArea">
|
|
|
68 |
<h4>Best Sellers</h4>
|
|
|
69 |
<ul class="mobileArea_ulList">
|
| 20507 |
kshitij.so |
70 |
#foreach($entity in $snippetMap.get('best-sellers'))
|
| 20424 |
kshitij.so |
71 |
<a href="$entity.getUrl()">
|
|
|
72 |
<li class="mobileArea_liList">
|
|
|
73 |
<img src="$entity.getThumbnail()" />
|
|
|
74 |
<p style="font-weight:bold;">$entity.getTitle()</p>
|
|
|
75 |
</li>
|
|
|
76 |
</a>
|
|
|
77 |
#end
|
|
|
78 |
</ul>
|
|
|
79 |
</div>
|
|
|
80 |
#end
|
|
|
81 |
#if($snippetMap.get('best-deals'))
|
|
|
82 |
<div class="mobileContentArea">
|
|
|
83 |
<h4>Best Deals</h4>
|
|
|
84 |
<ul class="mobileArea_ulList">
|
| 20507 |
kshitij.so |
85 |
#foreach($entity in $snippetMap.get('best-deals'))
|
| 20424 |
kshitij.so |
86 |
<a href="$entity.getUrl()">
|
|
|
87 |
<li class="mobileArea_liList">
|
|
|
88 |
<img src="$entity.getThumbnail()" />
|
|
|
89 |
<p style="font-weight:bold;">$entity.getTitle()</p>
|
|
|
90 |
</li>
|
|
|
91 |
</a>
|
|
|
92 |
#end
|
|
|
93 |
</ul>
|
|
|
94 |
</div>
|
|
|
95 |
#end
|
|
|
96 |
|
|
|
97 |
<!--Latest Mobile Area Ends Here-->
|
|
|
98 |
|
|
|
99 |
|
|
|
100 |
|
|
|
101 |
<!--Socialmedia Area Starts Here-->
|
|
|
102 |
|
|
|
103 |
<div class="socialmedia_Container">
|
|
|
104 |
|
|
|
105 |
<div class="facebook_Container"><iframe src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2FSpiceHotspot%2F&tabs=timeline&width=480&height=300&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId=180220242067759" width="480" height="300" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true"></iframe></div>
|
|
|
106 |
|
|
|
107 |
<div class="youtube_Container"><iframe width="480px" height="300px" src="https://www.youtube.com/embed/axiJGJENU9E" frameborder="0" allowfullscreen></iframe></div>
|
|
|
108 |
|
|
|
109 |
</div>
|
|
|
110 |
|
|
|
111 |
<!--Socialmedia Area Ends Here-->
|
|
|
112 |
|
|
|
113 |
#include("templates/footer.vm")
|
|
|
114 |
</body>
|
|
|
115 |
</html>
|