<#-- $This file is distributed under the terms of the license in /doc/license.txt$ --> <#include "partials/doctype.html"> <#include "partials/head.ftl">
<#-- We don't do title here because some pages don't get a title, or it may not be the same as the text. <h2>${title}</h2> --> ${body} </div> <!-- content --> </div> <!-- contentwrap --> <#include "partials/footer.ftl"> </div> <!-- wrap --> <#include "partials/scripts.ftl"> </body> </html> <#-- Three ways to add a stylesheet: A. In theme directory: ${stylesheets.addFromTheme("/sample.css"); ${stylesheets.add(themeStylesheetDir + "/sample.css")} B. Any location ${stylesheets.add("/edit/forms/css/sample.css)"} To add a script: A. In theme directory: ${scripts.addFromTheme("/sample.js"); B. Any location ${scripts("/edit/forms/js/sample.js)"} -->