diff options
Diffstat (limited to 'src/main/resources/templates/pages/deeper/seeker.html.ftl')
-rw-r--r-- | src/main/resources/templates/pages/deeper/seeker.html.ftl | 30 |
1 files changed, 30 insertions, 0 deletions
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} + </@noticebox> + <#else> + <@noticebox> + </@noticebox> + </#if> + + <div id="content"> + <article class="text"> + <#include "/templates/deeperheader.ftl"> + + <h3>Reading List</h3> + <ul> + <li><a href="http://www.amazon.com/dp/0310339308">Case for Christ - Lee Strobel</a></li> + <li><a href="http://www.amazon.com/dp/0310339294">Case for Faith - Lee Strobel</a></li> + </ul> + <h3>Other</h3> + <ul> + <li><a href="http://www.myfoursquarechurch.com/connect/community-groups/">Join a Community Group</a></li> + </ul> + </article> + </div> +</@commonpage> + |