| 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" />
|
|
|
5 |
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
|
|
|
6 |
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
|
|
|
7 |
#include ( "templates/commoncssfiles.vm" )
|
|
|
8 |
#include ( "templates/commonjsfiles.vm" )
|
|
|
9 |
#set($cp = $action.getCp())
|
|
|
10 |
</head>
|
|
|
11 |
|
|
|
12 |
<body>
|
|
|
13 |
#include("templates/header.vm")
|
|
|
14 |
<div class="productPage_upperContainer">
|
|
|
15 |
|
|
|
16 |
<div class="productPage_imageContainer">
|
|
|
17 |
<div class="default-thumbnail"><img src="$cp.getDefaultImageUrl()" /></div>
|
|
|
18 |
<ul class="imageThumbnail_ul">
|
|
|
19 |
#foreach($image in $cp.getImages())
|
|
|
20 |
#if($$velocityCount < 7)
|
| 20510 |
kshitij.so |
21 |
<a href="javascript:void(0)"><li class="imageThumbnail_li"><img src="$image.getUrl()" width="70" height="100px" /></li></a>
|
| 20424 |
kshitij.so |
22 |
#end
|
|
|
23 |
|
|
|
24 |
#end
|
|
|
25 |
</ul>
|
|
|
26 |
</div>
|
|
|
27 |
<div class="productPage_mainDescriptionContainer">
|
|
|
28 |
<h1>$cp.getTitle()</h1>
|
|
|
29 |
<h4>Basic Features</h4>
|
|
|
30 |
<ul class="productPage_listDesciption">
|
|
|
31 |
#foreach($spec in $cp.getKeySpecs())
|
|
|
32 |
<li>$spec</li>
|
|
|
33 |
#end
|
|
|
34 |
</ul>
|
| 20512 |
kshitij.so |
35 |
#if($cp.getIntroduction())
|
| 20578 |
kshitij.so |
36 |
<h4>Basic Description</h4>
|
| 20512 |
kshitij.so |
37 |
<p>$cp.getIntroduction()</p>
|
|
|
38 |
#end
|
| 20553 |
kshitij.so |
39 |
<a href="/contact-us/?eid=$action.getId()">
|
| 20546 |
kshitij.so |
40 |
<input type="button" class="productPage_enquireButton" value="ENQUIRE NOW" />
|
|
|
41 |
</a>
|
| 20424 |
kshitij.so |
42 |
</div>
|
|
|
43 |
</div>
|
|
|
44 |
|
|
|
45 |
<!--Produt Page Specifications Starts Here-->
|
|
|
46 |
|
|
|
47 |
<div class="productPage_specificationsContainer">
|
|
|
48 |
|
|
|
49 |
<div class="productPage_specificationsTitleContainer">
|
|
|
50 |
<h4 class="productPage_specificationsTitle">Highlights</h4></div>
|
|
|
51 |
<div class="productPage_specificationsli_Container01">
|
|
|
52 |
<ul class="productPage_specificationsli01">
|
|
|
53 |
#foreach($spec in $cp.getKeySpecs())
|
|
|
54 |
<li>$spec</li>
|
|
|
55 |
#end
|
|
|
56 |
</ul>
|
|
|
57 |
</div>
|
|
|
58 |
|
|
|
59 |
#if($cp.getPackageContents())
|
|
|
60 |
<div class="productPage_specificationsTitleContainer">
|
|
|
61 |
<h4 class="productPage_specificationsTitle">Package Contents</h4></div>
|
|
|
62 |
<div class="productPage_specificationsli_Container01">
|
|
|
63 |
<ul class="productPage_specificationsli01">
|
|
|
64 |
#foreach($packageContent in $cp.getPackageContents())
|
|
|
65 |
<li>$packageContent</li>
|
|
|
66 |
#end
|
|
|
67 |
</ul>
|
|
|
68 |
</div>
|
|
|
69 |
#end
|
|
|
70 |
|
|
|
71 |
#foreach($detailedSpecs in $cp.getDetailedSpecs())
|
|
|
72 |
<div class="productPage_specificationsTitleContainer">
|
|
|
73 |
<h4 class="productPage_specificationsTitle">$detailedSpecs.getTitle()</h4></div>
|
|
|
74 |
<table width="980" border="0" class="productPage_specificationsTable">
|
|
|
75 |
#foreach($spec in $detailedSpecs.getSpecs())
|
|
|
76 |
<tr>
|
|
|
77 |
#if($spec.getName()=="")
|
|
|
78 |
<td class="productPage_specificationsTable_left">#foreach($val in $spec.getValues())$val#end</td>
|
|
|
79 |
#else
|
|
|
80 |
<td class="productPage_specificationsTable_left">$spec.getName()</td>
|
|
|
81 |
<td class="productPage_specificationsTable_right">#foreach($val in $spec.getValues())$val#end</td>
|
|
|
82 |
#end
|
|
|
83 |
</tr>
|
|
|
84 |
#end
|
|
|
85 |
</table>
|
|
|
86 |
#end
|
|
|
87 |
</div>
|
|
|
88 |
|
|
|
89 |
#include("templates/footer.vm")
|
|
|
90 |
</body>
|
|
|
91 |
</html>
|