I don't use the hot links in my setup but I do have static URLs on all of my other pages and this is what I use on my new page.
<%if link_results_loop%>
<%loop link_results_loop%>
<%include link2.html%>
<%endloop%>
<%endif%>
Then link2.html looks like this.
<ul>
<li type="circle">
<span class="type">
<%Type%>
</span>
<a class="link" href="<%URL%>">
<%Title%>
</a>
<span class="descript">- <%Description%></span>
<a class="nw" href="<%URL%>" target="_blank">NW</a>
<a class="detailed" href="<%build_root_url%>/Detailed/<%ID%>.html ">DETAILS</a>
</ul>
|