<query type="else">
<htmltext>
valuea="Context:CurrentPage.Headline"
<li id="item">
<a href="<%!! Context:CurrentIndex.GetUrl() !!%>"><%!!
Context:CurrentIndex.Headline !!%></a> </li>
</htmltext>
</query>
The valuea="Context:CurrentPage.Headline" bit won't work.
You need to use the render tag syntax - as you have lower down - so
the above code becomes
<query type="else">
<htmltext>
<%!! Context:CurrentPage.Headline !!%>
<li id="item">
<a href="<%!! Context:CurrentIndex.GetUrl() !!%>"><%!!
Context:CurrentIndex.Headline !!%></a>
</li>
</htmltext>
</query>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"RedDot CMS Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/RedDot-CMS-Users?hl=en
-~----------~----~----~----~------~----~------~--~---