blob: 1780036d594244aa0c5d3ca66eceb8df273cb7d1 (
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
27
28
29
|
<#macro commonpage>
<#compress>
<!doctype html>
<html>
<head>
<title>Grow Process</title>
<link href="http://fonts.googleapis.com/css?family=Arvo:400,700" rel="stylesheet">
<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/banner.ftl">
<#include "/templates/header.ftl">
<#nested>
<div id="push"></div>
</div>
<#include "/templates/footer.ftl">
</body>
</html>
</#compress>
</#macro>
|