| 4940 |
varun.gupt |
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=iso-8859-1" />
|
|
|
5 |
<meta name="keywords" content="Privacy Policy, Saholic.com" />
|
|
|
6 |
<title>Quick Links | Saholic.com</title>
|
|
|
7 |
#include ( "templates/commoncssfiles.vm" )
|
|
|
8 |
</head>
|
|
|
9 |
<body>
|
|
|
10 |
<noscript>
|
|
|
11 |
<p id="noScript">Please allow <em>Javascript</em> in order to function this website correctly!</p>
|
|
|
12 |
</noscript>
|
|
|
13 |
$action.getHeaderSnippet()
|
|
|
14 |
<div id="main">
|
|
|
15 |
<div class="main-content">
|
|
|
16 |
<div id="registration">
|
|
|
17 |
<div class="middle">
|
|
|
18 |
<div style="margin: 0px 60px 0px 60px;">
|
|
|
19 |
<br/>
|
|
|
20 |
<h1><span style="font-family: Verdana;">Quick Links</span></h1>
|
|
|
21 |
<br style="font-family: Verdana;" />
|
|
|
22 |
<br style="font-family: Verdana;" />
|
|
|
23 |
<div id="productListingContent">
|
|
|
24 |
#set($quicklinks = $action.getQuickLinks())
|
|
|
25 |
#set($isLeft = 0)
|
|
|
26 |
|
|
|
27 |
#foreach ($url in $quicklinks.keySet())
|
|
|
28 |
#if($isLeft == 0)
|
|
|
29 |
#set($class="left")
|
|
|
30 |
#set($isLeft = 1)
|
|
|
31 |
#else
|
|
|
32 |
#set($class="right")
|
|
|
33 |
#set($isLeft = 0)
|
|
|
34 |
#end
|
|
|
35 |
<div class="left quicklink">
|
|
|
36 |
<a href="$url" target="_blank">$quicklinks.get($url)</a>
|
|
|
37 |
</div>
|
|
|
38 |
#end
|
|
|
39 |
<div class="clearBoth"></div>
|
|
|
40 |
</div>
|
|
|
41 |
</div>
|
|
|
42 |
</div>
|
|
|
43 |
</div>
|
|
|
44 |
</div>
|
|
|
45 |
</div><!-- /main -->
|
|
|
46 |
#include("templates/footer.vm")
|
|
|
47 |
#include ( "templates/commonjsfiles.vm" )
|
|
|
48 |
</body>
|
|
|
49 |
</html>
|