diff options
-rw-r--r-- | src/templates/pages/index.html.ftl | 21 | ||||
-rw-r--r-- | src/templates/templates/footer.ftl | 2 | ||||
-rw-r--r-- | src/templates/templates/index-hero.ftl | 2 | ||||
-rw-r--r-- | web/style.css | 5 |
4 files changed, 14 insertions, 16 deletions
diff --git a/src/templates/pages/index.html.ftl b/src/templates/pages/index.html.ftl index 2571926..785e729 100644 --- a/src/templates/pages/index.html.ftl +++ b/src/templates/pages/index.html.ftl @@ -5,20 +5,17 @@ <#include "/templates/index-hero.ftl"> <@content> - <img src="${staticRoot}/images/about-grow.png" /> - - <h1>Grow "Buckets"</h1> - <p> - We want to help you GROW - </p> + <h1>Welcome to GROW</h1> <p> - GROW process is an on-line application and network to help you GROW - as a follower of Jesus Christ. - </p> - Let's join together in a spiritual formation journey and begin the - discipleship process that will transform your life. + 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> - <#include "/templates/getstarted-button.ftl"> + <div id="getstarted"> + <a class="greenbutton" href="learnmore.html">Learn More! ➙</a> + </div> </@commonpage> diff --git a/src/templates/templates/footer.ftl b/src/templates/templates/footer.ftl index 0432974..cc080de 100644 --- a/src/templates/templates/footer.ftl +++ b/src/templates/templates/footer.ftl @@ -1,7 +1,7 @@ <footer> <div class="left"> <a href="${dynamicRoot}/index.html">Home</a> - <a href="${dynamicRoot}/about.html">About</a> + <a href="${dynamicRoot}/learnmore.html">Learn More</a> <a href="${dynamicRoot}/contact.html">Contact</a> </div> diff --git a/src/templates/templates/index-hero.ftl b/src/templates/templates/index-hero.ftl index f447d53..06fbca0 100644 --- a/src/templates/templates/index-hero.ftl +++ b/src/templates/templates/index-hero.ftl @@ -1,4 +1,4 @@ <div id="hero"> - <h1>We want to help you Grow.</h1> + <h1>We want to help you GROW!</h1> </div> diff --git a/web/style.css b/web/style.css index eb0d21b..aef1ae0 100644 --- a/web/style.css +++ b/web/style.css @@ -142,10 +142,11 @@ nav.primary a.current { #content { text-align: center; - color: #b0b0b0; + color: #505050; padding-bottom: 5em; margin: 1em auto 1em auto; max-width: 900px; + font-size: 115%; } #content article { @@ -192,7 +193,7 @@ footer { background: #3C3C3C; color: #737373; font-weight: bold; - font-size: 80%; + font-size: 90%; padding: 20px 20% 0 20%; height: 30px; clear: both; |