blob: 9b4323d41378016c3bf0912852283bec5abdeb11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<#macro commonpage>
<!doctype html>
<html>
<head>
<title>Grow Process</title>
<link rel="stylesheet" href="${staticRoot}/style.css" />
<script src="${staticRoot}/scripts/jquery.min.js"></script>
<script src="${staticRoot}/scripts/jquery-ui.js"></script>
<script src="${staticRoot}/scripts/growth.js"></script>
</head>
<body>
<div id="notfooter">
<#include "/templates/nav.ftl">
<#nested>
<div id="push"></div>
</div>
<#include "/templates/footer.ftl">
</body>
</html>
</#macro>
|