<style type="text/css">
|
a { text-decoration: none; }
|
.topMenu { margin-right:400px; }
|
.topMenu ul li { list-style: none; float:right; padding:5px;}
|
img { border:0px; }
|
</style>
|
<div class="topMenu">
|
<ul >
|
[#assign firstYjgnID = 0 /]
|
[#assign firstYjgnName = 0 /]
|
[#list yjgnList as d]
|
[#if firstYjgnID ==0] [#assign firstYjgnID = d.ID /] [/#if]
|
[#if firstYjgnName ==0] [#assign firstYjgnName = d.GNMC /] [/#if]
|
<li><a href="####" onclick="return loadLeft('${d.ID}','${d.GNMC}')" ><img width="48" height="46" src="${base+d.BIG_IMAGE}" /><div>${d.GNMC}</div> </a> </li>
|
[/#list]
|
</ul>
|
</div>
|