diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2013-09-24 21:46:52 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2013-09-24 21:46:52 -0700 |
commit | f93d756c47433d3399d43b5b1975182720b0b6e9 (patch) | |
tree | e3719b85b5193560cc84a1e01a0ec5538c847eb7 /src/templates/pages/index.html.ftl | |
parent | cf156b6d29ea7c92cc2308a8ea2bc59e7dbcd8ab (diff) |
Logo Changes.
Switching to the Foursquare logo for the index page.
Adding the foursquare logo along top the grow logo on other pages.
Diffstat (limited to 'src/templates/pages/index.html.ftl')
-rw-r--r-- | src/templates/pages/index.html.ftl | 33 |
1 files changed, 29 insertions, 4 deletions
diff --git a/src/templates/pages/index.html.ftl b/src/templates/pages/index.html.ftl index 785e729..94eaec3 100644 --- a/src/templates/pages/index.html.ftl +++ b/src/templates/pages/index.html.ftl @@ -1,7 +1,25 @@ <#include "/macros/common.ftl"> -<#include "/macros/common-page.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"> + <header> + <h1> + <a href="http://myfoursquarechurch.com"><img src="${staticRoot}/images/foursquarelg.png"></a> + </h1> + + <#include "/templates/nav.ftl"> + </header> -<@commonpage> <#include "/templates/index-hero.ftl"> <@content> @@ -10,7 +28,7 @@ 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. + follower of Jesus Christ. </p> </@content> @@ -18,4 +36,11 @@ <div id="getstarted"> <a class="greenbutton" href="learnmore.html">Learn More! ➙</a> </div> -</@commonpage> + + <div id="push"></div> +</div> + +<#include "/templates/footer.ftl"> + +</body> +</html> |