diff options
Diffstat (limited to 'src/templates/macros/common-page.ftl')
-rw-r--r-- | src/templates/macros/common-page.ftl | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/templates/macros/common-page.ftl b/src/templates/macros/common-page.ftl new file mode 100644 index 0000000..eaef04f --- /dev/null +++ b/src/templates/macros/common-page.ftl @@ -0,0 +1,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> |