summaryrefslogtreecommitdiff
path: root/src/templates/macros/common-page.ftl
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2013-04-30 06:54:08 -0700
committerJesse Morgan <jesse@jesterpm.net>2013-04-30 06:54:08 -0700
commit277f0f6ba4dc4ae788fc63fd26704ab766a79363 (patch)
tree64a8344a1b2a07a8db9aa391aeb5a4b53887e0b8 /src/templates/macros/common-page.ftl
parent206d83b645af34ddf7d67001b84c17b35a9fab9c (diff)
Adding page templates and resources
Diffstat (limited to 'src/templates/macros/common-page.ftl')
-rw-r--r--src/templates/macros/common-page.ftl26
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>