vitro/webapp/web/templates/freemarker/body/test.ftl

31 lines
476 B
Text
Raw Normal View History

2010-06-21 16:20:20 +00:00
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- FreeMarker test cases -->
<h2>Dates</h2>
<ul>
<li>${now?datetime}</li>
<li>${now?date}</li>
<li>${now?time}</li>
</ul>
<h2>Apples</h2>
<ul>
<#list apples as apple>
<li>${apple}</li>
</#list>
</ul>
<h2>Fruit</h2>
<ul>
<#list fruit as f>
<li>${f}</li>
</#list>
</ul>
<p><strong>Animal:</strong> ${animal}</p>
<@dump var="now" />
<@dump var="urls" />
<@dump var="fruit" />