NIHVIVO-1510 Property list macros

This commit is contained in:
rjy7 2010-12-22 23:16:28 +00:00
parent dd4acf965b
commit 0bb02e34bf

View file

@ -48,7 +48,7 @@
<#macro dataPropertyList statements> <#macro dataPropertyList statements>
<#list statements as statement> <#list statements as statement>
<li role="listitem">${statement.value}</li> <@propertyListItem>${statement.value}</@propertyListItem>
</#list> </#list>
</#macro> </#macro>
@ -62,8 +62,10 @@
<#macro objectPropertyList statements template> <#macro objectPropertyList statements template>
<#list statements as statement> <#list statements as statement>
<li role="listitem"> <@propertyListItem><#include "${template}"></@propertyListItem>
<#include "${template}">
</li>
</#list> </#list>
</#macro> </#macro>
<#macro propertyListItem>
<li role="listitem"><#nested></li>
</#macro>