blob: eaef04f1a573b901933fc787acf08f5d63ed2e5e (
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
26
|
<#macro commonpage>
<!doctype html>
<html>
<head>
<title>Grow Process</title>
<link rel="stylesheet" href="../style.css" />
<script src="../scripts/jquery.min.js"></script>
<script src="..//scripts/growth.js"></script>
</head>
<body>
<div id="notfooter">
<#include "/templates/nav.ftl">
<#include "/templates/index-hero.ftl">
<#nested>
<div id="push"></div>
</div>
<#include "/templates/footer.ftl">
</body>
</html>
</#macro>
|