Move FreeMarker templates, controllers, setup, and library upgrades into trunk. Not used to generate any pages or templates yet (except a couple of hidden pages that are only available through the url).

This commit is contained in:
rjy7 2010-05-11 20:37:48 +00:00
parent 72ee86f0a7
commit a0c93fda6d
44 changed files with 2256 additions and 7 deletions

View file

@ -0,0 +1,32 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#include "/components/doctype.html">
<#include "/components/head.ftl">
<body>
<div id="wrap" class="container">
<div id="header">
<#include "/components/identity.ftl">
<div id="navAndSearch" class="block">
<#include "/components/menu.ftl">
<#include "/components/search.ftl">
</div> <!-- navAndSearch -->
</div> <!-- header -->
<hr class="hidden" />
<div id="contentwrap">
<div id="content" <#if contentClass??> class="${contentClass}" </#if>>
${body}
</div> <!-- content -->
</div> <!-- contentwrap -->
<#include "/components/footer.ftl">
</div> <!-- wrap -->
</body>
</html>