Files
alfresco-community-repo/source/test-resources/xforms/unit-tests/simple-test/simple-test.ftl
Ariel Backenroth b068224185 - first pass at freemarker integration
- hello world freemarker template for simple test (works!)
- fixing edit-xml - it was referring to CreateXmlContentTypeWizard which was renamed yesterday
- separating out customer code from prototype util code in press release example.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4116 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2006-10-16 19:45:00 +00:00

28 lines
548 B
Plaintext

<html>
<head>
<style type="text/css">
body
{
font-family: Tahoma, Arial, Helvetica, sans-serif;
background-color: white;
font-size: 11px;
}
.name {
color: #003366;
font-weight: bold;
margin-right: 10px;
}
</style>
<title>Simple Test</title>
</head>
<body>
<div>Generated by simple-test.ftl</div>
<div style="line-height: 25px;">
<span class="name">Captured string value:</span>
<span>${doc.simple.string}</span>
</div>
</body>
</html>