diff options
Diffstat (limited to 'src/main/resources/templates/pages/index.html.ftl')
-rw-r--r-- | src/main/resources/templates/pages/index.html.ftl | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/main/resources/templates/pages/index.html.ftl b/src/main/resources/templates/pages/index.html.ftl new file mode 100644 index 0000000..59a5e38 --- /dev/null +++ b/src/main/resources/templates/pages/index.html.ftl @@ -0,0 +1,50 @@ +<#include "/macros/common.ftl"> +<!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"> + <header> + <h1> + <a href="http://myfoursquarechurch.com"><img src="${staticRoot}/images/foursquarelg.png"></a> + <#if config.getDomain() != "prod"> + <span class="versiontag">${config.getDomain()}</span> + </#if> + </h1> + + <#include "/templates/nav.ftl"> + </header> + + <#include "/templates/index-hero.ftl"> + + <@content> + <h1>Welcome to GROW</h1> + <p> + GROW is an on-line web based spiritual formation + process created by Foursquare Puyallup church with you in mind, to + assist you in your journey to discover God, and to be an effective + follower of Jesus Christ. + </p> + + </@content> + + <div id="getstarted"> + <a class="greenbutton" href="learnmore.html">Learn More! ➙</a> + </div> + + <div id="push"></div> +</div> + +<#include "/templates/footer.ftl"> + +</body> +</html> |