blob: 560fa48f1fd413fae79191b3862ac31082b38685 (
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="${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">
<#include "/templates/index-hero.ftl">
<#nested>
<div id="push"></div>
</div>
<#include "/templates/footer.ftl">
</body>
</html>
</#macro>
|