blob: 59a5e3816479a8058d1f74cebf32c2b52860ca8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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>
|