demi
2013-08-18 20:39:06 UTC
I am new to freemarker and I am not sure why the css is not rendering. On
sample code below only 1,2 and 3 is render on the browser but not the css.
Any help is appreciate it.
This is what I have.
I have two ftls file; one containing the macro and the other one calling the
macro.
ftl containing the macro:
<#macro stepsNavigation steps>
<ol>
<#list steps as step>
<li class="stepOn">
<div class="iconStyle">${step}</div>
</li>
</#list>
</ol>
</#macro>
ftl calling the macro
<div>
<@stepsNavigation ssteps=["1","2","3"] />
</div>
--
View this message in context: http://freemarker.624813.n4.nabble.com/css-not-render-on-the-html-tp4654732.html
Sent from the freemarker-user mailing list archive at Nabble.com.
sample code below only 1,2 and 3 is render on the browser but not the css.
Any help is appreciate it.
This is what I have.
I have two ftls file; one containing the macro and the other one calling the
macro.
ftl containing the macro:
<#macro stepsNavigation steps>
<ol>
<#list steps as step>
<li class="stepOn">
<div class="iconStyle">${step}</div>
</li>
</#list>
</ol>
</#macro>
ftl calling the macro
<div>
<@stepsNavigation ssteps=["1","2","3"] />
</div>
--
View this message in context: http://freemarker.624813.n4.nabble.com/css-not-render-on-the-html-tp4654732.html
Sent from the freemarker-user mailing list archive at Nabble.com.