Files
linguist/samples/FreeMarker/layout.ftl
2015-10-15 14:43:02 -07:00

13 lines
240 B
Plaintext

<#macro page title>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>${title}</title>
</head>
<body>
<#nested />
</body>
</html>
</#macro>