summaryrefslogtreecommitdiff
path: root/src/templates/macros/common-page.ftl
blob: 94cc5e370985e4db8f43abe37e49533813e8ee05 (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
<#macro commonpage>
    <!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>
</#macro>