From 3102d8bce3426d9cf41aeaf201c360d342677770 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Sat, 9 Apr 2016 14:22:20 -0700 Subject: Switching from Ivy+Ant to Maven. --- .../resources/templates/pages/assessment.html.ftl | 43 +++++++++ .../resources/templates/pages/contact.html.ftl | 18 ++++ .../templates/pages/deeper/believer.html.ftl | 51 ++++++++++ .../templates/pages/deeper/disciple.html.ftl | 49 ++++++++++ .../templates/pages/deeper/leader.html.ftl | 23 +++++ .../templates/pages/deeper/seeker.html.ftl | 30 ++++++ .../templates/pages/deeper/teacher.html.ftl | 42 ++++++++ src/main/resources/templates/pages/index.html.ftl | 50 ++++++++++ .../resources/templates/pages/learnmore.html.ftl | 107 +++++++++++++++++++++ src/main/resources/templates/pages/login.html.ftl | 41 ++++++++ .../resources/templates/pages/newaccount.html.ftl | 27 ++++++ .../templates/pages/verification.html.ftl | 17 ++++ src/main/resources/templates/pages/version.ftl | 1 + 13 files changed, 499 insertions(+) create mode 100644 src/main/resources/templates/pages/assessment.html.ftl create mode 100644 src/main/resources/templates/pages/contact.html.ftl create mode 100644 src/main/resources/templates/pages/deeper/believer.html.ftl create mode 100644 src/main/resources/templates/pages/deeper/disciple.html.ftl create mode 100644 src/main/resources/templates/pages/deeper/leader.html.ftl create mode 100644 src/main/resources/templates/pages/deeper/seeker.html.ftl create mode 100644 src/main/resources/templates/pages/deeper/teacher.html.ftl create mode 100644 src/main/resources/templates/pages/index.html.ftl create mode 100644 src/main/resources/templates/pages/learnmore.html.ftl create mode 100644 src/main/resources/templates/pages/login.html.ftl create mode 100644 src/main/resources/templates/pages/newaccount.html.ftl create mode 100644 src/main/resources/templates/pages/verification.html.ftl create mode 100644 src/main/resources/templates/pages/version.ftl (limited to 'src/main/resources/templates/pages') diff --git a/src/main/resources/templates/pages/assessment.html.ftl b/src/main/resources/templates/pages/assessment.html.ftl new file mode 100644 index 0000000..3737dc6 --- /dev/null +++ b/src/main/resources/templates/pages/assessment.html.ftl @@ -0,0 +1,43 @@ +<#include "/macros/common.ftl"> +<#include "/macros/common-page.ftl"> + +<@commonpage> + <@noticebox> + + + <@content class="text"> +

Assessment

+ +

+ Welcome to the start of GROW and the GROW personal assessment. The + purpose of this 18-question assessment will identify where you are + in the spiritual development process: +

+ +

+ Growth Process +

+ +

+ Upon completion of the assessment, you will be invited to join the + process at the appropriate stage. For example if the assessment + returns a “believer” result, you will be invited to start the + Believer level of this process. +

+ +

+ Once you have completed this level, you will be invited to begin the next stage of GROW. +

+ +

+ Let's get with your personal GROW assessment now, it will only take a few minutes. +

+ + + +
+ Begin Assessment ➙ +
+ + + diff --git a/src/main/resources/templates/pages/contact.html.ftl b/src/main/resources/templates/pages/contact.html.ftl new file mode 100644 index 0000000..c84e047 --- /dev/null +++ b/src/main/resources/templates/pages/contact.html.ftl @@ -0,0 +1,18 @@ +<#include "/macros/common.ftl"> +<#include "/macros/common-page.ftl"> + +<@commonpage> + <@noticebox> + + + <@content class="text"> +

Contact Us

+ +

+ If you have any questions about GROW, please email us at connect@myfoursquarechurch.com or call us at 253-848-9111. +

+ + + + + diff --git a/src/main/resources/templates/pages/deeper/believer.html.ftl b/src/main/resources/templates/pages/deeper/believer.html.ftl new file mode 100644 index 0000000..2bf9150 --- /dev/null +++ b/src/main/resources/templates/pages/deeper/believer.html.ftl @@ -0,0 +1,51 @@ +<#include "/macros/common.ftl"> +<#include "/macros/common-page.ftl"> + +<@commonpage> + <#if errorMessage??> + <@noticebox class="visible"> + ${errorMessage?html} + + <#else> + <@noticebox> + + + +
+
+ <#include "/templates/deeperheader.ftl"> + +

Assessments

+
    +
  • + Spiritual Gifts Assessment +

    + This is a spiritual gifts assessment. We all have + gifts from God to be understood and utilized and used + for Him. This link is a tool to help you identify your + spiritual gifts so that you can better understand your + fit in the body of Christ. +

    +
  • +
+

Reading List

+ +

Other

+ +
+
+ diff --git a/src/main/resources/templates/pages/deeper/disciple.html.ftl b/src/main/resources/templates/pages/deeper/disciple.html.ftl new file mode 100644 index 0000000..dd7fc13 --- /dev/null +++ b/src/main/resources/templates/pages/deeper/disciple.html.ftl @@ -0,0 +1,49 @@ +<#include "/macros/common.ftl"> +<#include "/macros/common-page.ftl"> + +<@commonpage> + <#if errorMessage??> + <@noticebox class="visible"> + ${errorMessage?html} + + <#else> + <@noticebox> + + + +
+
+ <#include "/templates/deeperheader.ftl"> + +

Assessments

+
    +
  • + Transformational Disciple Assessment +

    + The Transformational Discipleship Assessment (TDA) + is an advanced tool to dive more deeply into + opportunities for your customized discipleship + journey. This is an excellent tool to help you + take your spiritual formation to the next level. +

    +
  • +
+

Reading List

+ +

Other

+ +
+
+ diff --git a/src/main/resources/templates/pages/deeper/leader.html.ftl b/src/main/resources/templates/pages/deeper/leader.html.ftl new file mode 100644 index 0000000..371c367 --- /dev/null +++ b/src/main/resources/templates/pages/deeper/leader.html.ftl @@ -0,0 +1,23 @@ +<#include "/macros/common.ftl"> +<#include "/macros/common-page.ftl"> + +<@commonpage> + <#if errorMessage??> + <@noticebox class="visible"> + ${errorMessage?html} + + <#else> + <@noticebox> + + + +
+ +
+ diff --git a/src/main/resources/templates/pages/deeper/seeker.html.ftl b/src/main/resources/templates/pages/deeper/seeker.html.ftl new file mode 100644 index 0000000..ed0b21a --- /dev/null +++ b/src/main/resources/templates/pages/deeper/seeker.html.ftl @@ -0,0 +1,30 @@ +<#include "/macros/common.ftl"> +<#include "/macros/common-page.ftl"> + +<@commonpage> + <#if errorMessage??> + <@noticebox class="visible"> + ${errorMessage?html} + + <#else> + <@noticebox> + + + +
+ +
+ + diff --git a/src/main/resources/templates/pages/deeper/teacher.html.ftl b/src/main/resources/templates/pages/deeper/teacher.html.ftl new file mode 100644 index 0000000..f0046f2 --- /dev/null +++ b/src/main/resources/templates/pages/deeper/teacher.html.ftl @@ -0,0 +1,42 @@ +<#include "/macros/common.ftl"> +<#include "/macros/common-page.ftl"> + +<@commonpage> + <#if errorMessage??> + <@noticebox class="visible"> + ${errorMessage?html} + + <#else> + <@noticebox> + + + +
+
+ <#include "/templates/deeperheader.ftl"> + +

Assessments

+
    +
  • + Transformational Disciple Assessment +

    + The Transformational Discipleship Assessment (TDA) + is an advanced tool to dive more deeply into + opportunities for your customized discipleship + journey. This is an excellent tool to help you + take your spiritual formation to the next level. +

    +
  • +
+

Reading List

+ +

Other

+ +
+
+ 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"> + + + + Grow Process + + + + + + + + +
+ <#include "/templates/banner.ftl"> +
+

+ + <#if config.getDomain() != "prod"> + ${config.getDomain()} + +

+ + <#include "/templates/nav.ftl"> +
+ + <#include "/templates/index-hero.ftl"> + + <@content> +

Welcome to GROW

+

+ 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. +

+ + + + + +
+
+ +<#include "/templates/footer.ftl"> + + + diff --git a/src/main/resources/templates/pages/learnmore.html.ftl b/src/main/resources/templates/pages/learnmore.html.ftl new file mode 100644 index 0000000..f69b075 --- /dev/null +++ b/src/main/resources/templates/pages/learnmore.html.ftl @@ -0,0 +1,107 @@ +<#include "/macros/common.ftl"> +<#include "/macros/common-page.ftl"> + +<@commonpage> + <@noticebox> + + + <@content class="text"> +

Learn More

+ +

What is GROW?

+

+ GROW is a comprehensive spiritual formation and discipleship tool + that is specifically designed to help you grow and mature as a + follower of Jesus Christ. +

+

+ GROW is an innovative, web based process that incorporates multiple + media elements for learning including assessments, videos, written + materials, interactive tools, community forums, etc. +

+

+ GROW is designed to be experienced in a variety of ways to meet all + the possible scenarios and environments for learning: +

+ + +

Why GROW?

+

+ Disciple means "learner" and our goal is to help you be an + effective learner and grow in the knowledge of Jesus Christ, the + Word of God, and the essentials of your faith. This will cause the + transformation God promises you will experience, and that + transformation will in turn change your life! +

+

+ Every individual is in one of four stages of spiritual formation: +

+

Seeker, Believer, Disciple, Teacher

+

+ Our goal is to help you identify where you are, and to help you get to + the next stage of development and spiritual maturity. +

+

+ We believe that Jesus last command in Matthew 28:19 should be our + highest priority: +

+
+ "Therefore go and make disciples of all nations, baptizing them in + the name of the Father and of the Son and of the Holy Spirit..." +
+

+ At Foursquare Puyallup, we + are passionate about people discovering God, + entering into a personal relationship with Jesus Christ, and then + realizing their full potential in Christ as a follower of His. +

+ +

It is in our mission statement:

+ +
+ We present the Gospel message in such a way that Seekers become + Believers, Believers become Disciples, Disciples become Teachers and + Teachers lead this process. +
+ +

And it's our #5 Core value as a church:

+ +
+ We value leadership development. We help Seekers to become + Believers, Believers to become Disciples and Disciples to become + Teachers. We want to encourage and cheer the development process. +
+ +

+ We have created the GROW process for that very purpose, and in + fulfillment of God's call on the church. +

+ +

How does GROW work?

+

Here is how it works:

+ + +

Now it's your turn to act!

+

Get started now in your journey by taking the GROW assessment.

+ + + + <#include "/templates/getstarted-button.ftl"> + + diff --git a/src/main/resources/templates/pages/login.html.ftl b/src/main/resources/templates/pages/login.html.ftl new file mode 100644 index 0000000..b88ea74 --- /dev/null +++ b/src/main/resources/templates/pages/login.html.ftl @@ -0,0 +1,41 @@ +<#include "/macros/common.ftl"> +<#include "/macros/common-page.ftl"> + +<@commonpage> + <#if errorMessage??> + <@noticebox class="visible"> + ${errorMessage?html} + + <#else> + <@noticebox> + + + +
+
+
Puyallup Foursquare
+
+
+
+

Login using your Foursquare Community Groups / Online Giving login.

+

+

+
+

+

+

+
+

+

+

Don't have an account? Sign up!

+
+
+
+
Acts 2:42
+
Leadership Development
+
+
+
+
+ + diff --git a/src/main/resources/templates/pages/newaccount.html.ftl b/src/main/resources/templates/pages/newaccount.html.ftl new file mode 100644 index 0000000..edfd196 --- /dev/null +++ b/src/main/resources/templates/pages/newaccount.html.ftl @@ -0,0 +1,27 @@ +<#include "/macros/common.ftl"> +<#include "/macros/common-page.ftl"> + +<@commonpage> + <#if errorMessage??> + <@noticebox class="visible"> + ${errorMessage?html} + + <#else> + <@noticebox> + + + + <@content> +

+ Fill out the form below to create a new Puyallup Foursquare InFellowship account. +

+
+

+

+

+

+
+ + + + diff --git a/src/main/resources/templates/pages/verification.html.ftl b/src/main/resources/templates/pages/verification.html.ftl new file mode 100644 index 0000000..e81b005 --- /dev/null +++ b/src/main/resources/templates/pages/verification.html.ftl @@ -0,0 +1,17 @@ +<#include "/macros/common.ftl"> +<#include "/macros/common-page.ftl"> + +<@commonpage> + <@noticebox> + + + <@content> +

+ We have sent you a verification email. + You will be taken back to the login page after you activate your account. +

+ + + + + diff --git a/src/main/resources/templates/pages/version.ftl b/src/main/resources/templates/pages/version.ftl new file mode 100644 index 0000000..d8a38a2 --- /dev/null +++ b/src/main/resources/templates/pages/version.ftl @@ -0,0 +1 @@ +Current version <#include "/templates/gitversion.ftl"> -- cgit v1.2.3