1<div class="LayR">
2 #if($Solution_Name.getData() != "")
3<div class="title myset_control_title_width">
4#else
5<div class="title myset_control_title_width title_Without_Headline">
6#end
7 <h1 class="t">$Solution_Name.getData()</h1>
8 #if($Solution_Intro.getData() != "")
9 <p>$Solution_Intro.getData()</p>
10 #end
11 </div>
12 <div class="dlayout">
13 <div class="dlyL">
14 <div class="content mtp">
15 #if($Solution_Image.getData() != "")
16 <img src="$Solution_Image.getData()" width="555" height="280" title="$Solution_Image.getChildren().get(0).getData()" alt="$Solution_Image.getChildren().get(0).getData()"/>
17 <p></p>
18 #end
19
20 #foreach($desc in $Solution_Description.getSiblings())
21 #if($desc.getData() != "")
22 <p>$desc.getData()</p>
23 <br /><br />
24 #end
25 #end
26
27
28 </div>
29 </div>
30 #if($Important_Product_Name.getData() != "")
31 <div class="dlyR">
32 <div class="Blist">
33 <h4>$Important_Product_Name.getData()</h4>
34 #foreach($impprod in $Important_Product_Name.getChildren())
35 #if($impprod.getName() == "Important_Product_Image")
36 <div class="center"><img src="$impprod.getData()" width="168" height="125" title="$impprod.getChildren().get(0).getData()" alt="$impprod.getChildren().get(0).getData()"/></div>
37 #end
38
39 #if($impprod.getName() == "Important_Product_Description" && $impprod.getData() != "")
40 <p>$impprod.getData()</p>
41 #end
42 #end
43 </div>
44 </div>
45 #end
46 </div>
47 #if($Related_Products_Title.getData() != "")
48 <h4 class="lsntit margin_left_4px">$Related_Products_Title.getData()</h4>
49 <ul class="relProducts margin_left_4px">
50 #foreach($relproducts in $Related_Products_Name.getSiblings())
51 <li>
52 #foreach($relpro in $relproducts.getChildren())
53 #if($relpro.getName() == "Related_Products_Image" && $relpro.getData() != "")
54 <img src="$relpro.getData()" width="75" height="42" class="imgFL" title="$relpro.getChildren().get(0).getData()" alt="$relpro.getChildren().get(0).getData()"/>
55 #end
56
57 #if($relpro.getName() == "Related_Products_Link" && $relproducts.getData() != "")
58 <p>
59 #if($relpro.getData() != "")
60
61 <a href="$relpro.getFriendlyUrl()" class="blink">$relproducts.getData()</a>
62 #else
63 <div class="content_without_link">$relproducts.getData()</div>
64 #end
65
66 </p>
67 #end
68 #end
69 </li>
70 #end
71
72 </ul>
73 #end
74 #if($Related_Capabilites_Title.getData() != "")
75 <h4 class="lsntit margin_left_4px">$Related_Capabilites_Title.getData()</h4>
76 <ul class="rlist margin_left_4px">
77 #foreach($relcaps in $Related_Capabilites_Name.getSiblings())
78 <li>
79 #foreach($relcap in $relcaps.getChildren())
80 #if($relcap.getData() != "")
81 <a href="$relcap.getFriendlyUrl()" class="blink">$relcaps.getData()</a>
82 #else
83 <div class="content_without_link">$relcaps.getData()</div>
84 #end
85
86
87 #end
88 </li>
89 #end
90
91 </ul>
92 #end
93</div>