Renamed Freemarker macro files. Implemented data input portion of main site admin page in Freemarker.

This commit is contained in:
rjy7 2010-08-30 22:06:17 +00:00
parent 79da8d30ed
commit fa247f1f79
11 changed files with 102 additions and 27 deletions

View file

@ -0,0 +1,13 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- Macros for json output -->
<#macro array data>
[
<#if data??>
<#list data as obj>
${obj.json}<#if obj_has_next>,</#if>
</#list>
</#if>
]
</#macro>