blob: 1a5c3d360cc3d114fe01a0d3996d9b81a04f9b41 (
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
|
<#macro commonpage>
<!doctype html>
<html>
<head>
<title>Grow Process</title>
<link rel="stylesheet" href="${contentroot}/style.css" />
<script src="${contentroot}/scripts/jquery.min.js"></script>
<script src="${contentroot}/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>
|