unfortunately this is the change to the new zola based website
19
Makefile
|
@ -1,19 +0,0 @@
|
|||
all: build-server
|
||||
|
||||
build-server:
|
||||
cargo build
|
||||
|
||||
serve:
|
||||
hugo server --noHTTPCache --disableFastRender
|
||||
|
||||
css:
|
||||
NODE_ENV=development ./themes/blowfish/node_modules/tailwindcss/lib/cli.js -c ./themes/blowfish/tailwind.config.js -i ./themes/blowfish/assets/css/main.css -o ./assets/css/compiled/main.css --jit -w
|
||||
|
||||
build-site:
|
||||
rm -rf public && NODE_ENV=production ./themes/blowfish/node_modules/tailwindcss/lib/cli.js -c ./themes/blowfish/tailwind.config.js -i ./themes/blowfish/assets/css/main.css -o ./assets/css/compiled/main.css --jit && hugo --gc --minify
|
||||
|
||||
api:
|
||||
sbcl --load build.lisp
|
||||
|
||||
clean:
|
||||
rm -rf public
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
title: "{{ replace .File.ContentBaseName "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
tags: []
|
||||
featured_image: ""
|
||||
description: ""
|
||||
---
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
/* For Peertube Videos to flow the width of container */
|
||||
.pt-vid {
|
||||
flex: auto;
|
||||
}
|
||||
|
||||
#v-frame {
|
||||
background-color: black;
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16">
|
||||
<path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 290 B |
|
@ -1 +0,0 @@
|
|||
/home/chris/dev/tfcconnection/static/img/logo.png
|
11
build.lisp
|
@ -1,11 +0,0 @@
|
|||
(load (sb-ext:posix-getenv "ASDF"))
|
||||
(asdf:load-asd (pathname (truename "tfcserver.asd")))
|
||||
(asdf:load-system 'tfcserver)
|
||||
;; (asdf:make :tfcserver)
|
||||
;; (asdf:operate :program-op :tfcserver)
|
||||
(asdf:disable-output-translations)
|
||||
(sb-ext:save-lisp-and-die
|
||||
#p"tfcserver"
|
||||
:compression t
|
||||
:toplevel #'tfcserver::main
|
||||
:executable t)
|
181
config.toml
Normal file
|
@ -0,0 +1,181 @@
|
|||
# The base URL of the site; the only required configuration variable.
|
||||
base_url = "https://tfcconnection.org"
|
||||
|
||||
# The site title and description; used in feeds by default.
|
||||
title = "TFC Connection"
|
||||
description = "Teens For Christ Connection"
|
||||
|
||||
# The default language; used in feeds.
|
||||
default_language = "en"
|
||||
|
||||
# For overriding the default output directory `public`, set it to another value (e.g.: "docs")
|
||||
output_dir = "public"
|
||||
|
||||
# When set to "true", the Sass files in the `sass` directory in the site root are compiled.
|
||||
# Sass files in theme directories are always compiled.
|
||||
compile_sass = false
|
||||
|
||||
# When set to "true", the generated HTML files are minified.
|
||||
minify_html = false
|
||||
|
||||
# A list of glob patterns specifying asset files to ignore when the content
|
||||
# directory is processed. Defaults to none, which means that all asset files are
|
||||
# copied over to the `public` directory.
|
||||
# Example:
|
||||
# ignored_content = ["*.{graphml,xlsx}", "temp.*"]
|
||||
ignored_content = []
|
||||
|
||||
# When set to "true", a feed is automatically generated.
|
||||
generate_feeds = true
|
||||
|
||||
# The filename to use for the feed. Used as the template filename, too.
|
||||
# Defaults to "atom.xml", which has a built-in template that renders an Atom 1.0 feed.
|
||||
# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.
|
||||
feed_filenames = ["atom.xml"]
|
||||
|
||||
# The number of articles to include in the feed. All items are included if
|
||||
# this limit is not set (the default).
|
||||
# feed_limit = 20
|
||||
|
||||
# When set to "true", files in the `static` directory are hard-linked. Useful for large
|
||||
# static files. Note that for this to work, both `static` and the
|
||||
# output directory need to be on the same filesystem. Note that the theme's `static`
|
||||
# files are always copied, regardless of this setting.
|
||||
hard_link_static = false
|
||||
|
||||
# The taxonomies to be rendered for the site and their configuration of the default languages
|
||||
# Example:
|
||||
# taxonomies = [
|
||||
# {name = "tags", feed = true}, # each tag will have its own feed
|
||||
# {name = "tags"}, # you can have taxonomies with the same name in multiple languages
|
||||
# {name = "categories", paginate_by = 5}, # 5 items per page for a term
|
||||
# {name = "authors"}, # Basic definition: no feed or pagination
|
||||
# ]
|
||||
#
|
||||
taxonomies = [
|
||||
{name = "tags", paginate_by = 5, feed = true},
|
||||
{name = "categories", paginate_by = 5, feed = true},
|
||||
]
|
||||
|
||||
# When set to "true", a search index is built from the pages and section
|
||||
# content for `default_language`.
|
||||
build_search_index = true
|
||||
|
||||
# Configuration of the Markdown rendering
|
||||
[markdown]
|
||||
# When set to "true", all code blocks are highlighted.
|
||||
highlight_code = true
|
||||
|
||||
# A list of directories used to search for additional `.sublime-syntax` files.
|
||||
extra_syntaxes = []
|
||||
|
||||
# The theme to use for code highlighting.
|
||||
# See below for list of allowed values.
|
||||
highlight_theme = "base16-ocean-dark"
|
||||
|
||||
# When set to "true", emoji aliases translated to their corresponding
|
||||
# Unicode emoji equivalent in the rendered Markdown files. (e.g.: :smile: => 😄)
|
||||
render_emoji = true
|
||||
|
||||
# Whether external links are to be opened in a new tab
|
||||
# If this is true, a `rel="noopener"` will always automatically be added for security reasons
|
||||
external_links_target_blank = false
|
||||
|
||||
# Whether to set rel="nofollow" for all external links
|
||||
external_links_no_follow = false
|
||||
|
||||
# Whether to set rel="noreferrer" for all external links
|
||||
external_links_no_referrer = false
|
||||
|
||||
# Whether smart punctuation is enabled (changing quotes, dashes, dots in their typographic form)
|
||||
# For example, `...` into `…`, `"quote"` into `“curly”` etc
|
||||
smart_punctuation = false
|
||||
|
||||
# Configuration of the link checker.
|
||||
[link_checker]
|
||||
# Skip link checking for external URLs that start with these prefixes
|
||||
skip_prefixes = [
|
||||
"http://[2001:db8::]/",
|
||||
]
|
||||
|
||||
# Skip anchor checking for external URLs that start with these prefixes
|
||||
skip_anchor_prefixes = [
|
||||
"https://caniuse.com/",
|
||||
]
|
||||
|
||||
# Various slugification strategies, see below for details
|
||||
# Defaults to everything being a slug
|
||||
[slugify]
|
||||
paths = "on"
|
||||
taxonomies = "on"
|
||||
anchors = "on"
|
||||
|
||||
[search]
|
||||
# Whether to include the title of the page/section in the index
|
||||
include_title = true
|
||||
# Whether to include the description of the page/section in the index
|
||||
include_description = true
|
||||
# Whether to include the path of the page/section in the index
|
||||
include_path = true
|
||||
# Whether to include the rendered content of the page/section in the index
|
||||
include_content = true
|
||||
# At which character to truncate the content to. Useful if you have a lot of pages and the index would
|
||||
# become too big to load on the site. Defaults to not being set.
|
||||
truncate_content_length = 100
|
||||
|
||||
# Optional translation object for the default language
|
||||
# Example:
|
||||
# default_language = "fr"
|
||||
#
|
||||
# [translations]
|
||||
# title = "Un titre"
|
||||
#
|
||||
[translations]
|
||||
|
||||
# Additional languages definition
|
||||
# You can define language specific config values and translations:
|
||||
# title, description, generate_feed, feed_filename, taxonomies, build_search_index
|
||||
# as well as its own search configuration and translations (see above for details on those)
|
||||
[languages]
|
||||
# For example
|
||||
[languages.fr]
|
||||
title = "Blow"
|
||||
description = "Un thème pour Zola fait avec tailwindcss"
|
||||
generate_feeds = false
|
||||
taxonomies = [
|
||||
{name = "tags", paginate_by = 5, feed = true},
|
||||
{name = "categories", paginate_by = 5, feed = true},
|
||||
]
|
||||
# build_search_index = false
|
||||
|
||||
# You can put any kind of data here. The data
|
||||
# will be accessible in all templates
|
||||
# Example:
|
||||
# [extra]
|
||||
# author = "Famous author"
|
||||
#
|
||||
# author value will be available using {{ config.extra.author }} in templates
|
||||
#
|
||||
[extra]
|
||||
|
||||
|
||||
[extra.navbar]
|
||||
items = [
|
||||
{ lang = "en", links = [
|
||||
{ url = "/", name = "Home" },
|
||||
{ url = "/categories", name = "Categories" },
|
||||
{ url = "/tags", name = "Tags" },
|
||||
] },
|
||||
]
|
||||
title = "TFC Connection"
|
||||
|
||||
|
||||
[extra.index]
|
||||
title = "TFC Connection"
|
||||
image = "https://tfcconnection.org/logo.png"
|
||||
image_alt = "Placeholder text describing the index's image."
|
||||
|
||||
[extra.default_author]
|
||||
name = "Chris Cochrun"
|
||||
avatar = "https://via.placeholder.com/200"
|
||||
avatar_alt = "Placeholder text describing the default author's avatar."
|
|
@ -1,5 +0,0 @@
|
|||
[taxonomies]
|
||||
tag = "tags"
|
||||
category = "categories"
|
||||
author = "authors"
|
||||
series = "series"
|
|
@ -1,56 +0,0 @@
|
|||
baseURL: 'https://tfcconnection.org/'
|
||||
languageCode: en-us
|
||||
title: TFC Connection
|
||||
theme: blowfish
|
||||
DefaultContentLanguage: en
|
||||
enableRobotsTXT: true
|
||||
Paginate: 10
|
||||
SummaryLength: 20
|
||||
buildDrafts: false
|
||||
buildFuture: false
|
||||
outputs:
|
||||
home:
|
||||
- HTML
|
||||
- RSS
|
||||
- JSON
|
||||
taxonomies:
|
||||
tag: tags
|
||||
category: categories
|
||||
author: authors
|
||||
series: series
|
||||
sitemap:
|
||||
changefreq: daily
|
||||
filename: sitemap.xml
|
||||
priority: 0.5
|
||||
params:
|
||||
favicon: favicon-16x16.png
|
||||
site_logo: img/logo.png
|
||||
description: >-
|
||||
Connecting teens with the truth of Jesus Christ… teaching and equipping them
|
||||
to live out the Great Commission.
|
||||
hugoLeaflet:
|
||||
css:
|
||||
- href: "https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"
|
||||
params:
|
||||
integrity: "sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
|
||||
crossorigin: ""
|
||||
- href: "https://unpkg.com/@raruto/leaflet-elevation@1.1.1/dist/leaflet-elevation.css"
|
||||
- href: "/css/leaflet.extra-markers.min.css"
|
||||
js:
|
||||
- src: "/js/leaflet.hugo.js"
|
||||
- src: "https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"
|
||||
params:
|
||||
integrity: "sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="
|
||||
crossorigin: ""
|
||||
- src: "/js/leaflet.elevation.js"
|
||||
- src: "/js/leaflet.extra-markers.min.js"
|
||||
|
||||
privacy:
|
||||
disqus:
|
||||
disable: true
|
||||
googleAnalytics:
|
||||
disable: true
|
||||
instagram: {}
|
||||
twitter: {}
|
||||
vimeo: {}
|
||||
youtube: {}
|
|
@ -1,62 +0,0 @@
|
|||
languageCode = "en"
|
||||
languageName = "English"
|
||||
# displayName = "EN"
|
||||
# isoCode = "en"
|
||||
weight = 1
|
||||
# rtl = false
|
||||
|
||||
title = "TFC Connection"
|
||||
# description = "Connecting teens with the truth of Jesus Christ… teaching and equipping them to live out the Great Commission."
|
||||
# copyright = "Copy, _right?_ :thinking_face:"
|
||||
|
||||
# dateFormat = "Jan 02, 06"
|
||||
|
||||
[author]
|
||||
name = "TFC Connection"
|
||||
image = "img/logo.png"
|
||||
headline = "Teens For Christ Connection"
|
||||
bio = "Connecting teens with the truth of Jesus Christ… teaching and equipping them to live out the Great Commission."
|
||||
links = [
|
||||
# { email = "mailto:hello@your_domain.com" },
|
||||
# { link = "https://link-to-some-website.com/" },
|
||||
# { amazon = "https://www.amazon.com/hz/wishlist/ls/wishlist-id" },
|
||||
# { apple = "https://www.apple.com" },
|
||||
# { blogger = "https://username.blogspot.com/" },
|
||||
# { codepen = "https://codepen.io/username" },
|
||||
# { dev = "https://dev.to/username" },
|
||||
# { discord = "https://discord.gg/invitecode" },
|
||||
# { dribbble = "https://dribbble.com/username" },
|
||||
{ facebook = "https://facebook.com/tfcconnection" },
|
||||
# { flickr = "https://www.flickr.com/photos/username/" },
|
||||
# { foursquare = "https://foursquare.com/username" },
|
||||
# { github = "https://github.com/username" },
|
||||
# { gitlab = "https://gitlab.com/username" },
|
||||
# { google = "https://www.google.com/" },
|
||||
# { hashnode = "https://username.hashnode.dev" },
|
||||
{ instagram = "https://instagram.com/tfcconnection" },
|
||||
# { keybase = "https://keybase.io/username" },
|
||||
# { kickstarter = "https://www.kickstarter.com/profile/username" },
|
||||
# { lastfm = "https://lastfm.com/user/username" },
|
||||
# { linkedin = "https://linkedin.com/in/username" },
|
||||
# { mastodon = "https://mastodon.instance/@username" },
|
||||
# { medium = "https://medium.com/username" },
|
||||
# { microsoft = "https://www.microsoft.com/" },
|
||||
# { orcid = "https://orcid.org/userid" },
|
||||
# { patreon = "https://www.patreon.com/username" },
|
||||
# { pinterest = "https://pinterest.com/username" },
|
||||
# { reddit = "https://reddit.com/user/username" },
|
||||
# { researchgate = "https://www.researchgate.net/profile/username" },
|
||||
# { slack = "https://workspace.url/team/userid" },
|
||||
# { snapchat = "https://snapchat.com/add/username" },
|
||||
# { soundcloud = "https://soundcloud.com/username" },
|
||||
# { stack-overflow = "https://stackoverflow.com/users/userid/username" },
|
||||
# { steam = "https://steamcommunity.com/profiles/userid" },
|
||||
# { telegram = "https://t.me/username" },
|
||||
# { tiktok = "https://tiktok.com/@username" },
|
||||
# { tumblr = "https://username.tumblr.com" },
|
||||
# { twitch = "https://twitch.tv/username" },
|
||||
# { twitter = "https://twitter.com/username" },
|
||||
# { whatsapp = "https://wa.me/phone-number" },
|
||||
# { youtube = "https://youtube.com/username" },
|
||||
# { ko-fi = "https://ko-fi.com/username" },
|
||||
]
|
|
@ -1,13 +0,0 @@
|
|||
# -- Markup --
|
||||
# These settings are required for the theme to function.
|
||||
|
||||
[goldmark]
|
||||
[goldmark.renderer]
|
||||
unsafe = true
|
||||
|
||||
[highlight]
|
||||
noClasses = false
|
||||
|
||||
[tableOfContents]
|
||||
startLevel = 2
|
||||
endLevel = 4
|
|
@ -1,63 +0,0 @@
|
|||
# -- Main Menu --
|
||||
# The main menu is displayed in the header at the top of the page.
|
||||
# Acceptable parameters are name, pageRef, page, url, title, weight.
|
||||
#
|
||||
# The simplest menu configuration is to provide:
|
||||
# name = The name to be displayed for this menu link
|
||||
# pageRef = The identifier of the page or section to link to
|
||||
#
|
||||
# By default the menu is ordered alphabetically. This can be
|
||||
# overridden by providing a weight value. The menu will then be
|
||||
# ordered by weight from lowest to highest.
|
||||
|
||||
[[main]]
|
||||
name = "About"
|
||||
pageRef = "about"
|
||||
weight = 10
|
||||
|
||||
[[main]]
|
||||
name = "Ministries"
|
||||
pageRef = "ministries"
|
||||
weight = 20
|
||||
|
||||
[[main]]
|
||||
name = "Groups"
|
||||
pageRef = "groups"
|
||||
weight = 30
|
||||
|
||||
[[main]]
|
||||
name = "Staff"
|
||||
pageRef = "staff"
|
||||
weight = 40
|
||||
|
||||
[[main]]
|
||||
name = "Donate"
|
||||
pageRef = "donate"
|
||||
weight = 50
|
||||
|
||||
[[main]]
|
||||
name = "Contact"
|
||||
pageRef = "contact"
|
||||
weight = 60
|
||||
|
||||
# -- Footer Menu --
|
||||
# The footer menu is displayed at the bottom of the page, just before
|
||||
# the copyright notice. Configure as per the main menu above.
|
||||
|
||||
|
||||
[[footer]]
|
||||
name = "Tags"
|
||||
pageRef = "tags"
|
||||
weight = 10
|
||||
|
||||
[[footer]]
|
||||
pre = "facebook"
|
||||
name = "Facebook"
|
||||
url = "https://facebook.com/tfcconnection"
|
||||
weight = 20
|
||||
|
||||
[[footer]]
|
||||
pre = "instagram"
|
||||
name = "Instagram"
|
||||
url = "https://instagram.com/tfcconnection"
|
||||
weight = 30
|
|
@ -1,57 +0,0 @@
|
|||
colorScheme: blowfish
|
||||
defaultAppearance: dark
|
||||
autoSwitchAppearance: false
|
||||
enableSearch: true
|
||||
highlightCurrentMenuArea: true
|
||||
smartTOC: true
|
||||
logo: logo.png
|
||||
author:
|
||||
name: TFC Connection
|
||||
links:
|
||||
- facebook: 'https://facebook.com/tfcconnection'
|
||||
- instagram: 'https://instagram.com/tfcconnection'
|
||||
header:
|
||||
layout: fixed
|
||||
homepage:
|
||||
layout: page
|
||||
showRecent: false
|
||||
showRecentItems: 5
|
||||
showMoreLink: true
|
||||
showMoreLinkDest: docs
|
||||
article:
|
||||
showDate: false
|
||||
showDateUpdated: false
|
||||
showAuthor: true
|
||||
showHero: true
|
||||
heroStyle: thumbAndBackground
|
||||
showBreadcrumbs: true
|
||||
showDraftLabel: true
|
||||
showEdit: true
|
||||
seriesOpened: false
|
||||
showHeadingAnchors: true
|
||||
showPagination: true
|
||||
invertPagination: false
|
||||
showReadingTime: false
|
||||
showTableOfContents: true
|
||||
showTaxonomies: true
|
||||
showAuthorsBadges: false
|
||||
showWordCount: false
|
||||
showSummary: true
|
||||
sharingLinks:
|
||||
- twitter
|
||||
- reddit
|
||||
- facebook
|
||||
- instagram
|
||||
- email
|
||||
list:
|
||||
showBreadcrumbs: true
|
||||
showSummary: true
|
||||
showTableOfContents: true
|
||||
showCards: true
|
||||
groupByYear: false
|
||||
footer:
|
||||
showMenu: true
|
||||
showCopyright: true
|
||||
showThemeAttribution: true
|
||||
showAppearanceSwitcher: false
|
||||
showScrollToTop: true
|
|
@ -1,13 +1,11 @@
|
|||
---
|
||||
title: "TFC Connection 🎉"
|
||||
date: 2022-10-25T13:02:05-05:00
|
||||
description: "Connecting teens with the truth of Jesus Christ… teaching and equipping them to live out the Great Commission."
|
||||
showHeadingAnchors: false
|
||||
showTitle: false
|
||||
---
|
||||
|
||||
Teens For Christ Connection (TFC) is a rural ministry reaching out to the mission field of teenagers in rural communities across Northwest Kansas and Southwest Nebraska. In rural communities where youth ministry programs and resources are limited, TFC desires to partner with churches to meet this need. Whether this is through providing community youth groups, coaching those already working with youth, or supplying resources and extra curricular activities for area ministries, TFC desires to connect teens with the truth of Jesus Christ and equip them to live out the Great Commission.
|
||||
|
||||
<!-- ////////CAMP STUFF//////// -->
|
||||
<div class="flex flex-wrap items-center">
|
||||
<span class="basis-full md:basis-3/4 items-center">
|
||||
{{< typeit tag=h2 lifeLike=true >}}
|
||||
|
@ -15,7 +13,7 @@ Camp registration is now open!!
|
|||
{{< /typeit >}}
|
||||
</span>
|
||||
|
||||
<span class="grow">
|
||||
<!-- <span class="grow"> -->
|
||||
|
||||
<span class="basis-full md:basis-1/4 items-center mt-6">
|
||||
{{< button href="/camp-form" >}}
|
||||
|
@ -24,13 +22,35 @@ Fill out now!
|
|||
</span>
|
||||
</div>
|
||||
|
||||
{{< spacing height=h-4 >}}
|
||||
{{ spacing(height="h-4") }}
|
||||
|
||||
> If you need to fill out a camp health form, please do so [here](/camp-health-form).
|
||||
|
||||
> If you need to pay for your camp form, pay for registration ($85) [here](https://secure.myvanco.com/L-Z772/campaign/C-13JPJ) or pay for the full price ($185) [here](https://secure.myvanco.com/L-Z772/campaign/C-13JQE).
|
||||
|
||||
{{< pt src="https://videos.tfcconnection.org/videos/embed/757dc0dd-9bdc-4d79-8f81-754249ff23d2" >}}
|
||||
{{ pt(src="https://videos.tfcconnection.org/videos/embed/0e6378c4-bb58-4fb1-8edf-72b73efc5ad2") }}
|
||||
|
||||
<!-- ////////MT STUFF//////// -->
|
||||
<!-- <div class="flex flex-wrap items-center"> -->
|
||||
<!-- <span class="basis-full md:basis-3/4 items-center"> -->
|
||||
<!-- {{< typeit tag=h2 lifeLike=true >}} -->
|
||||
<!-- Mission Trip sign ups are here! -->
|
||||
<!-- {{< /typeit >}} -->
|
||||
<!-- </span> -->
|
||||
|
||||
<!-- <span class="grow"> -->
|
||||
|
||||
<!-- <span class="basis-full md:basis-1/4 items-center mt-6"> -->
|
||||
<!-- {{< button href="/mt-form" >}} -->
|
||||
<!-- Fill out now! -->
|
||||
<!-- {{< /button >}} -->
|
||||
<!-- </span> -->
|
||||
<!-- </div> -->
|
||||
|
||||
<!-- {{< spacing height=h-4 >}} -->
|
||||
|
||||
<!-- > If you need to fill out a health form, please do so [here](/health-form). Also here you can fill out the [parent](/mt-parent-form), [teacher](/mt-teacher-form), [church-related](/mt-church-form) reference forms. -->
|
||||
|
||||
|
||||
## Our Vision
|
||||
Our vision is to change the world from the heart of America by providing disciple making opportunities that serve communities where student ministries are limited.
|
||||
|
@ -38,4 +58,4 @@ Our vision is to change the world from the heart of America by providing discipl
|
|||
## Our Mission
|
||||
We do that by, connecting teens with the truth of Jesus Christ…teaching and equipping them to live out the Great Commission.
|
||||
|
||||
{{< disciplemaking-tw >}}
|
||||
{{ disciplemaking }}
|
||||
|
|
|
@ -1,42 +0,0 @@
|
|||
---
|
||||
title: "About"
|
||||
description: "TFC Connection is a not-for-profit ministry that reaches out to the American teenager in the rural Kansas and Nebraska setting. We are dedicated to connecting teens with the truth of Jesus Christ, teaching and equipping them to carry out the Great Commission."
|
||||
featured_image: '/Victor_Hugo-Hunchback.jpg'
|
||||
tags: ["Loving Jesus"]
|
||||
showWordCount: false
|
||||
showReadingTime: false
|
||||
showDate: false
|
||||
showEdit: false
|
||||
showTaxonomies: true
|
||||
sharingLinks: false
|
||||
layout: simple
|
||||
---
|
||||
_TFC Connection_ (TFC) is a rural ministry reaching out to the mission field of teenagers in rural communities across Northwest Kansas and Southwest Nebraska. In rural communities where youth ministry programs and resources are limited, TFC desires to partner with churches to meet this need. Whether this is through providing community youth groups, coaching those already working with youth, or supplying resources and extra curricular activities for area ministries, TFC desires to connect teens with the truth of Jesus Christ and equip them to live out the Great Commission.
|
||||
|
||||
# Our Vision and Mission
|
||||
- Our vision is to change the world from the heart of America by providing disciple making opportunities that serve communities where student ministries are limited.
|
||||
- We do that by, connecting teens with the truth of Jesus Christ…teaching and equipping them to live out the Great Commission.
|
||||
|
||||
# Our Team
|
||||
- [ Brian & Julie Fischer ](/staff/brian-and-julie-fischer)
|
||||
- [Lavonne Ponstein](/staff/lavonne-ponstein)
|
||||
- [Janice Lundquist](/staff/janice-lundquist)
|
||||
- [Lewis & Susan Smith](/staff/lewis-smith)
|
||||
- [Ethan Rose](/staff/ethan-rose)
|
||||
- [April & Arnie Teves](/staff/april-teves)
|
||||
- [Rob & Taffy Lewis](/staff/rob-and-taffy-lewis)
|
||||
- [Chris & Abbie Cochrun](/staff/chris-and-abbie-cochrun)
|
||||
- [Billy Cayou](/staff/billy-cayou)
|
||||
<!-- - [Dani Rouse - Intern](/staff/dani-rouse) -->
|
||||
|
||||
# Our Statement of Faith
|
||||
There’s no doubt that teens in the United States are in trouble. Violence, sex, drugs, peer pressure, resentment and anger all plague them. TFC’s goal of connecting these teens with Jesus is the only remedy for such a problem. Through connecting teens with other teens, Christian adults and the message of Christ, TFC serves God by connecting teens with the truth of Jesus Christ…teaching and equipping them to live out the Great Commission.
|
||||
|
||||
1. We believe the Bible to be the inspired, the only infallible, authoritative Word of God.
|
||||
2. We believe there is one God, eternally existent in three persons: Father, Son and Holy Spirit.
|
||||
3. We believe in the deity of our Lord Jesus Christ, His virgin birth, in His sinless life, in His miracles, in His vicarious and atoning death through His shed blood and His bodily resurrection, in His ascension to the right hand of the Father, and in His personal return in power and glory.
|
||||
4. We believe that for the salvation of lost and sinful men, regeneration by the Holy Spirit is absolutely essential.
|
||||
5. We believe in the present ministry of the Holy Spirit by whose indwelling the Christian is enabled to live a godly life.
|
||||
6. We believe that all mankind will be bodily resurrected, the saved to eternal life, and the unsaved to judgment and everlasting punishment.
|
||||
8. We believe in the spiritual unity of believers in Christ.
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
title: "Chris Cochrun"
|
||||
---
|
||||
|
8
content/blog/_index.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
+++
|
||||
title = "Blog"
|
||||
description = "Blog posts"
|
||||
template = "section.html"
|
||||
page_template = "page.html"
|
||||
sort_by = "date"
|
||||
paginate_by = 5
|
||||
+++
|
9
content/blog/first.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
title = "My first post"
|
||||
date = 2021-11-12
|
||||
[taxonomies]
|
||||
categories=["blog"]
|
||||
tags=["post", "blog"]
|
||||
+++
|
||||
|
||||
This is my first updated blog post.
|
9
content/blog/fourth.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
title = "My fourth post"
|
||||
date = 2021-11-12
|
||||
[taxonomies]
|
||||
categories=["blog"]
|
||||
tags=["post", "blog"]
|
||||
+++
|
||||
|
||||
This is my fourth updated blog post.
|
9
content/blog/second.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
title = "My second post"
|
||||
date = 2021-11-12
|
||||
[taxonomies]
|
||||
categories=["blog"]
|
||||
tags=["post", "blog"]
|
||||
+++
|
||||
|
||||
This is my second updated blog post.
|
9
content/blog/seventh.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
title = "My seventh post"
|
||||
date = 2021-11-12
|
||||
[taxonomies]
|
||||
categories=["blog"]
|
||||
tags=["post", "blog"]
|
||||
+++
|
||||
|
||||
This is my seventh updated blog post.
|
9
content/blog/sixth.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
title = "My sixth post"
|
||||
date = 2021-11-12
|
||||
[taxonomies]
|
||||
categories=["blog"]
|
||||
tags=["post", "blog"]
|
||||
+++
|
||||
|
||||
This is my sixth updated blog post.
|
9
content/blog/third.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
title = "My thrid post"
|
||||
date = 2021-11-12
|
||||
[taxonomies]
|
||||
categories=["blog"]
|
||||
tags=["post", "blog"]
|
||||
+++
|
||||
|
||||
This is my thrid updated blog post.
|
|
@ -1,27 +1,27 @@
|
|||
---
|
||||
title: "Camp Form"
|
||||
omit_header_text: true
|
||||
layout: simple
|
||||
sharingLinks: false
|
||||
date: 2024-12-12
|
||||
|
||||
---
|
||||
|
||||
<!-- We are currently working on updating the form!! Check back soon to get signed up for camp!! -->
|
||||
|
||||
{{< floating-button icon="chevron-down" text="To the form!" link="#form" >}}
|
||||
{{< pt src="https://videos.tfcconnection.org/videos/embed/757dc0dd-9bdc-4d79-8f81-754249ff23d2" width="700" height="576">}}
|
||||
{{ pt(src="https://videos.tfcconnection.org/videos/embed/757dc0dd-9bdc-4d79-8f81-754249ff23d2" width="700" height="576")}}
|
||||
{{ spacing(height="h-8")}}
|
||||
|
||||
We hope you are as excited about camp as we are! If there is anything we can do to answer your questions and help you to get signed up for camp, please let us know! You can email any of us by going to the [contact page](/contact).
|
||||
|
||||
## Dates
|
||||
- ~~Week 1 - July 22 - July 26~~ Week 1 is filled, so if that's your only option, we can put you on a waiting list for it down in the form below
|
||||
- Week 2 - July 29 - Aug 2
|
||||
- Week 1 - July 21 - July 25
|
||||
- Week 2 - July 28 - Aug 1
|
||||
|
||||
## Cost
|
||||
We have an early bird registration, so if you register by certain dates, you'll save some money!
|
||||
- By May 8: $65 with registration plus $100 due at camp and a free t shirt!
|
||||
- By June 28: $85 with registration plus $100 due at camp and a free t shirt!
|
||||
- After June 28: $85 with registration plus $100 due at camp... _NO FREE T SHIRT!!!_
|
||||
{{ spacing(height="h-4")}}
|
||||
- By May 7: $85 with registration plus $100 due at camp and a free t shirt!
|
||||
- By June 25: $100 with registration plus $100 due at camp and a free t shirt!
|
||||
- After June 25: $100 with registration plus $100 due at camp... _NO FREE T SHIRT!!!_
|
||||
|
||||
## Location
|
||||
Camp Joy in Republican City, NE
|
||||
|
@ -29,6 +29,7 @@ Camp Joy in Republican City, NE
|
|||
[70790 Corp Rd 23, Republican City, NE 68971](https://maps.google.com/maps?z=16&q=70790%2Bcorp%2Brd%2B23%2Brepublican%2Bcity%2C%2Bne%2B68971)
|
||||
<!-- http://umap.openstreetmap.fr/en/map/anonymous-edit/888075:134YBQNTmQ2pkJ76ur0PJ8KPuAc -->
|
||||
|
||||
{{< map mapName="campmap_888075" >}}
|
||||
<!-- {{< map mapName="campmap_888075" >}} -->
|
||||
|
||||
{{< camp-form >}}
|
||||
{{ spacing(height="h-4")}}
|
||||
{{ camp_form }}
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
---
|
||||
title: "Camp Health Form"
|
||||
date: 2023-3-22T06:18:16-06:00
|
||||
omit_header_text: true
|
||||
layout: simple
|
||||
sharingLinks: false
|
||||
---
|
||||
|
||||
> You will need to fill out this health form in order to finish your camp form.
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
|
||||
## Camp Is Here!
|
||||
Week 2 of camp is already full! If you'd like to sign up you'll have to select week 1, if you can't make it week 1 contact your TFC leader to see if room has been made for week 2! TFC Camp signups have started! If you'd like to go please click the button below!
|
||||
|
||||
{{< button href="/camp-form" target="_self" >}}
|
||||
Sign up now!
|
||||
{{< /button >}}
|
|
@ -1,16 +1,12 @@
|
|||
---
|
||||
title: Contact
|
||||
featured_image: ''
|
||||
omit_header_text: true
|
||||
description: We'd love to hear from you
|
||||
type: page
|
||||
layout: "simple"
|
||||
sharingLinks: false
|
||||
|
||||
date: 2014-10-18
|
||||
---
|
||||
|
||||
Right now our contact form is broken, you can email any of the staff by using their first name followed by @tfcconnection.org. Sorry for the inconvenience.
|
||||
<!-- Right now our contact form is broken, you can email any of the staff by using their first name followed by @tfcconnection.org. Sorry for the inconvenience. -->
|
||||
|
||||
<!-- We would love to get into contact with you! Just put in your name, a message and your email address and we will get right back to you! You can also email a specific staff member here if you'd like to make sure the message gets directly to them! If you don't know who to email, just leave it blank! -->
|
||||
We would love to get into contact with you! Just put in your name, a message and your email address and we will get right back to you! You can also email a specific staff member here if you'd like to make sure the message gets directly to them! If you don't know who to email, just leave it blank!
|
||||
|
||||
<!-- {{< contact-form >}} -->
|
||||
{{< contact-form >}}
|
||||
|
|
|
@ -1,13 +1,5 @@
|
|||
---
|
||||
title: Donate
|
||||
featured_image: ''
|
||||
omit_header_text: true
|
||||
showHero: false
|
||||
showEdit: false
|
||||
showDate: false
|
||||
showTableOfContents: false
|
||||
sharingLinks: false
|
||||
layout: "simple"
|
||||
---
|
||||
|
||||
{{< donate >}}
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
---
|
||||
title: "Groups"
|
||||
date: 2022-10-28T10:21:38-05:00
|
||||
tags: []
|
||||
featured_image: ""
|
||||
description: ""
|
||||
cascade:
|
||||
showWordCount: false
|
||||
showReadingTime: false
|
||||
showDate: false
|
||||
showEdit: false
|
||||
showTaxonomies: true
|
||||
showSummary: true
|
||||
showBreadcrumbs: true
|
||||
sharingLinks: ['facebook', 'instagram', 'email', 'reddit']
|
||||
showHero: false
|
||||
---
|
||||
|
||||
Many of the TFC Staff pour their hearts and hours into these groups. We work within the community and kids to share Jesus's love.
|
Before Width: | Height: | Size: 186 KiB |
|
@ -1,24 +0,0 @@
|
|||
---
|
||||
title: "Atwood"
|
||||
date: 2022-10-28T10:20:04-05:00
|
||||
tags: ["Jenny Popp"]
|
||||
featured_image: ""
|
||||
description: ""
|
||||
summary: "- Start Time: 6:30 for HS and 6:00 for JH (Supper for both)\n- End Time: 8:30 for HS and 8:00 for JH\n- Location: 5ten Youth Center, 510 Main, Atwood KS\n- 1st and 3rd Wed. is HS\n- 2nd and 4th Wed is JH"
|
||||
weight: 80
|
||||
---
|
||||

|
||||
|
||||
# High School
|
||||
- Start Time: 1st & 3rd Wednesday of month, 6:30 PM (Supper provided)
|
||||
- End Time: 8:30
|
||||
- Location: 5ten Youth Center, 510 Main, Atwood KS
|
||||
- Ages: 9-12th Grade
|
||||
|
||||
{{< spacing >}}
|
||||
|
||||
# Junior High
|
||||
- Start Time: 2nd & 4th Wednesday of month, 6:00 PM (Supper provided)
|
||||
- End Time: 8:00
|
||||
- Location: 5ten Youth Center, 510 Main, Atwood KS
|
||||
- Ages: 7-8th Grade
|
Before Width: | Height: | Size: 149 KiB |
|
@ -1,18 +0,0 @@
|
|||
---
|
||||
title: "Codell"
|
||||
date: 2022-10-28T10:20:20-05:00
|
||||
tags: ['Associate Group']
|
||||
featured_image: ""
|
||||
description: ""
|
||||
summary: "- Wednesdays 6:45-8:15pm (Supper Provided)\n- Ages: 6th-12th Grade\n- Location: Codell Community Church, 409 Codell Rd. Codell, KS 67663"
|
||||
weight: 90
|
||||
---
|
||||

|
||||
|
||||
- Wednesdays 6:45-8:15pm (Supper Provided)
|
||||
- Ages: 6th-12th Grade
|
||||
- Location: Codell Community Church, 409 Codell Rd. Codell, KS 67663
|
||||
|
||||
Rides leave from in front of the Natoma gym at 6:30pm and students are dropped back off there around 8:30pm.
|
||||
|
||||
For more info, head on over to [our website](https://comegrowtogether.com/180).
|
Before Width: | Height: | Size: 214 KiB |
|
@ -1,14 +0,0 @@
|
|||
---
|
||||
title: "Colby"
|
||||
date: 2022-10-28T10:20:25-05:00
|
||||
tags: ['Associate Group']
|
||||
featured_image: ""
|
||||
summary: "- Wednesdays 6:30-8:00 pm (meal provided)\n- Colby Wesleyan Church 320 W Pine St. Colby Kansas 67701\n- Ages: 5th - 12th grade"
|
||||
description: "- Wednesdays 6:30-8:00 pm (meal provided)\n- Colby Wesleyan Church 320 W Pine St. Colby Kansas 67701\n- Ages: 5th - 12th grade"
|
||||
weight: 100
|
||||
---
|
||||

|
||||
|
||||
- Wednesdays 6:30-8:00 pm (meal provided)
|
||||
- Colby Wesleyan Church 320 W Pine St. Colby Kansas 67701
|
||||
- Ages: 5th - 12th grade
|
Before Width: | Height: | Size: 362 KiB |
|
@ -1,15 +0,0 @@
|
|||
---
|
||||
title: "Logan"
|
||||
date: 2022-10-28T10:19:27-05:00
|
||||
tags: ["April Teves"]
|
||||
featured_image: ""
|
||||
description: ""
|
||||
summary: "- Start Time: Monday, 6:30 PM (Supper provided)\n- End Time: 8:30\n- Location: First Christian Church 204 N. Douglas, Logan, KS 67646\n- Ages: 6-12th Grade"
|
||||
weight: 50
|
||||
---
|
||||

|
||||
|
||||
- Start Time: Monday, 6:30 PM (Supper provided)
|
||||
- End Time: 8:30
|
||||
- Location: First Christian Church 204 N. Douglas, Logan, KS 67646
|
||||
- Ages: 6-12th Grade
|
Before Width: | Height: | Size: 994 KiB |
|
@ -1,14 +0,0 @@
|
|||
---
|
||||
title: "Northern Valley"
|
||||
date: 2022-10-28T10:19:57-05:00
|
||||
tags: ["Chris Cochrun", "Dani Rouse"]
|
||||
featured_image: "featured.jpg"
|
||||
summary: "- Start Time: Wednesday, Junior High 5:00 PM, High School 6:30 PM (supper for both at 6:30)\n- End Time: 8:30\n- Location: Almena Community Building\n- Ages: 6-8th Grade"
|
||||
weight: 30
|
||||
---
|
||||

|
||||
|
||||
- Start Time: Wednesday, Junior High 5:00 PM, High School 6:30 PM (supper for both at 6:30)
|
||||
- End Time: 8:30
|
||||
- Location: Almena Community Building
|
||||
- Ages: 6-12th Grade
|
Before Width: | Height: | Size: 222 KiB |
|
@ -1,15 +0,0 @@
|
|||
---
|
||||
title: "Phillipsburg"
|
||||
date: 2022-10-28T10:19:41-05:00
|
||||
tags: ["Brian Fischer", "Billy Cayou"]
|
||||
featured_image: ""
|
||||
description: ""
|
||||
summary: "- Start Time: Wednesday, 6:30 PM (Supper provided)\n- End Time: 8:30\n- Location: Community Church of God, 135 10th Street, Phillipsburg, KS 67661\n- Ages: 6-12th Grade"
|
||||
weight: 10
|
||||
---
|
||||

|
||||
|
||||
- Start Time: Wednesday, 6:30 PM (Supper provided)
|
||||
- End Time: 8:30
|
||||
- Location: Community Church of God, 135 10th Street, Phillipsburg, KS 67661
|
||||
- Ages: 6-12th Grade
|
Before Width: | Height: | Size: 240 KiB |
|
@ -1,19 +0,0 @@
|
|||
---
|
||||
title: "Smith Center"
|
||||
date: 2022-10-28T10:20:16-05:00
|
||||
tags: ["Tom and Brenda Colorassi"]
|
||||
featured_image: ""
|
||||
description: ""
|
||||
summary: "- Start Time: Wednesday, 6:30 PM\n- End Time: 8:00\n- Location: New Covenant Church in Smith Center\n- Ages: 6-12th Grade"
|
||||
weight: 70
|
||||
---
|
||||

|
||||
|
||||
# Details
|
||||
- Start Time: Wednesday, 6:30 PM
|
||||
- End Time: 8:00
|
||||
- Location: New Covenant Church in Smith Center
|
||||
- Ages: 6-12th Grade
|
||||
|
||||
# Leaders
|
||||
Tom and Brenda Colorassi
|
Before Width: | Height: | Size: 221 KiB |
|
@ -1,15 +0,0 @@
|
|||
---
|
||||
title: "Southern Valley"
|
||||
date: 2022-10-28T10:19:49-05:00
|
||||
tags: ["Rob Lewis"]
|
||||
featured_image: ""
|
||||
description: ""
|
||||
summary: "- Start Time: Wednesday, 6:30 PM (Supper provided)\n- End Time: 9:00\n- Location: Rob’s House 904 Howard St Oxford NE 68967\n- Ages: 6-12th Grade"
|
||||
weight: 40
|
||||
---
|
||||

|
||||
|
||||
- Start Time: Wednesday, 6:30 PM (Supper provided)
|
||||
- End Time: 9:00
|
||||
- Location: Rob’s House 904 Howard St Oxford NE 68967
|
||||
- Ages: 6-12th Grade
|
Before Width: | Height: | Size: 437 KiB |
|
@ -1,15 +0,0 @@
|
|||
---
|
||||
title: "Thunder Ridge"
|
||||
date: 2022-10-28T10:19:34-05:00
|
||||
tags: ["Ethan Rose", "Janice Lundquist"]
|
||||
featured_image: ""
|
||||
description: ""
|
||||
summary: "- Start Time: Wednesday, 6:30 PM (Supper provided)\n- End Time: 8:30\n- Location: United Methodist Church 667 Southern Ave, Agra, KS 67621\n- Ages: 6-12th Grade"
|
||||
weight: 20
|
||||
---
|
||||

|
||||
|
||||
- Start Time: Wednesday, 6:30 PM (Supper provided)
|
||||
- End Time: 8:30
|
||||
- Location: United Methodist Church 667 Southern Ave, Agra, KS 67621
|
||||
- Ages: 6-12th Grade
|
Before Width: | Height: | Size: 226 KiB |
|
@ -1,15 +0,0 @@
|
|||
---
|
||||
title: "Wakeeney"
|
||||
date: 2022-10-28T10:20:11-05:00
|
||||
tags: ["April Teves"]
|
||||
featured_image: ""
|
||||
description: ""
|
||||
summary: "- Start Time: Wednesday, 6:00 PM (Supper provided)\n- End Time: 7:30\n- Location: Church of God, Wakeeney KS\n- Ages: 6-12th Grade"
|
||||
weight: 60
|
||||
---
|
||||

|
||||
|
||||
- Start Time: Wednesday, 6:00 PM (Supper provided)
|
||||
- End Time: 7:30
|
||||
- Location: Church of God, Wakeeney KS
|
||||
- Ages: 6-12th Grade
|
|
@ -1,9 +1,5 @@
|
|||
---
|
||||
title: "Health Form"
|
||||
date: 2022-12-08T14:33:33-06:00
|
||||
omit_header_text: true
|
||||
layout: simple
|
||||
sharingLinks: false
|
||||
---
|
||||
Here you can fill out your health form in order to go to larger TFC events like ice skating, camp, SPLASH, and mission trip! If you've already filled out a form in May, then you won't need another until the next May! The current active health form is from {{< health-form-year >}}
|
||||
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
title: Local Mission Trip Form
|
||||
layout: simple
|
||||
sharingLinks: false
|
||||
---
|
||||
|
||||
If you'd like to still do a mission trip of some kind, but the other dates do not work for you or you do not feel ready for a longer trip, then this is the trip for you! Sign up here now!
|
||||
|
||||
## Mission Trip Agreement
|
||||
> In order to fill out the application, you must agree to the following!
|
||||
|
||||
- I agree to obey all rules and guidelines that TFC Connection and other associated ministries establish, realizing they have my best interest and welfare in mind. I will trust their judgment and obey them. **The staff have the right to confront me if they see a problem in my attitude or in my obeying the rules.**
|
||||
- I acknowledge that I am expected to do my share of the work on the mission trip and I will be willing to do what is asked of me with an "I'd be glad to" attitude.
|
||||
- **I will work at making this mission trip a priority!** even if other events come up after I am accepted on a mission trip, I will commit to still go on this trip.
|
||||
|
||||
{{< local-trip-form >}}
|
|
@ -1,14 +0,0 @@
|
|||
---
|
||||
title: "Ministries"
|
||||
date: 2017-03-02T12:00:00-05:00
|
||||
layout: list
|
||||
cascade:
|
||||
showReadingTime: false
|
||||
showWordCount: false
|
||||
showDate: false
|
||||
showBreadcrumbs: list.showBreadcrumbs
|
||||
showSummary: true
|
||||
layout: "simple"
|
||||
---
|
||||
These ministries are at the heart of TFC. We do our absolute best to make sure all things we do are centered around God making disciples of young people.
|
||||
|
Before Width: | Height: | Size: 692 KiB |
|
@ -1,14 +0,0 @@
|
|||
---
|
||||
title: "Alumni"
|
||||
date: 2022-10-27T13:14:06-05:00
|
||||
tags: ['ministry','event']
|
||||
featured_image: ""
|
||||
description: "Over the course of 40 years of ministry many teens have made their way through the “halls” of TFC Connection."
|
||||
summary: "Over the course of 40 years of ministry many teens have made their way through the “halls” of TFC Connection."
|
||||
weight: 70
|
||||
---
|
||||

|
||||
|
||||
Over the course of 40 years of ministry many teens have made their way through the “halls” of TFC Connection. As a ministry we have recognized the need to stay connected with former students to encourage them to continue growing in their faith and provide them with opportunities to serve. These opportunities include anniversary celebrations, campus/city gatherings and mission opportunities. Through these activities we hope to reconnect TFC alumni with one another as they continue to grow as disciple-makers and serve in their local churches and communities.
|
||||
|
||||
If you are interested in anything happening with the alumni at TFC, send an email to [Janice](mailto:janice@tfcconnection.org).
|
Before Width: | Height: | Size: 214 KiB |
|
@ -1,12 +0,0 @@
|
|||
---
|
||||
title: "Associate Groups"
|
||||
date: 2022-10-27T13:14:26-05:00
|
||||
tags: ['ministry','event']
|
||||
featured_image: ""
|
||||
description: "As a ministry we felt God calling us to begin investing in people who were wanting to work with youth in rural communities in this region so we created a structure..."
|
||||
summary: "As a ministry we felt God calling us to begin investing in people who were wanting to work with youth in rural communities in this region so we created a structure..."
|
||||
weight: 60
|
||||
---
|
||||

|
||||
|
||||
As a ministry we felt God calling us to begin investing in people who were wanting to work with youth in rural communities in this region so we created a structure for youth groups to be associated with TFC through something called “Associate Groups”. Associate groups have access to TFC resources and coaching from TFC staff members. As a ministry we have over 200 years of combined ministry experience among the staff and we want to share that experience with others. Associate groups can decide to become a full TFC group after one year of being an associate group and then they will receive added benefits including coverage under the corporate insurance policy and a 15 passenger van if one is available.
|
Before Width: | Height: | Size: 6.5 MiB |
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
#+TITLE: 2023 TFC Camp - Simon Says
|
||||
TITLE: 2023 TFC Camp - Simon Says
|
||||
#+DATE: 2023-08-14
|
||||
DATE: 2023-08-14
|
||||
tags:
|
||||
- Camp
|
||||
- Simon Says
|
||||
featured_image: "featured.jpg"
|
||||
description: Simons Says
|
||||
summary: At TFC Camp this year, we looked long and hard at Simon Peter and learned how God takes ordinary people and transforms them for His extraordinary purposes!
|
||||
showAuthor: false
|
||||
showAuthorsBadge: true
|
||||
showTaxonomies: true
|
||||
showReadingTime: true
|
||||
showWordCount: true
|
||||
showDate: true
|
||||
layout: hero
|
||||
heroStyle: background
|
||||
showTableOfContents: false
|
||||
---
|
||||
|
||||
At TFC Camp this year, we looked long and hard at Simon Peter and learned how God takes ordinary people and transforms them for His extraordinary purposes! Dustin Mulkey spoke for us this year, and it was an incredible chance to watch as God uses people for His incredible mission. Teens experienced the Lord changing them incredibly!
|
||||
|
||||
If you'd like to watch all the recap videos from our two weeks of camp, you can do so here.
|
||||
|
||||
{{< pt src="https://videos.tfcconnection.org/video-playlists/embed/e6f72890-d09b-441e-9861-8e9ae0b27665" height="700" weight="576">}}
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
title: "Camp"
|
||||
date: 2022-10-27T06:31:50-05:00
|
||||
tags: ['ministry','event']
|
||||
featured_image: "img/camp.jpg"
|
||||
description: "After attending large youth camps in the Kansas City area for several years in the late 70’s and early 80’s, the ministry leadership decided to begin designing their own camp experience..."
|
||||
summar: "After attending large youth camps in the Kansas City area for several years in the late 70’s and early 80’s, the ministry leadership decided to begin designing their own camp experience..."
|
||||
weight: 40
|
||||
---
|
||||

|
||||
|
||||
After attending large youth camps in the Kansas City area for several years in the late 70’s and early 80’s, the ministry leadership decided to begin designing their own camp experience locally in Southern Nebraska. TFC Camp happens over a two-week period each summer at the Camp Joy campground east of Alma, NE. During wild and wacky games, water fun and special events the teenagers develop long-term friendships with other area teens. Spiritual growth occurs through devotions, seminars and messages which encourage campers to take the next step in growing in their relationship with Jesus Christ. TFC Camp provides solid opportunities for teens to grow in the disciple-making process as they are integrated into student leadership positions through a variety of intentional leadership development steps.
|
||||
|
||||
{{< pt src="https://videos.tfcconnection.org/videos/embed/30c22854-51ab-4c10-a5a2-034b0e506abf" width="700" height="576">}}
|
||||
|
||||
{{< spacing >}}
|
Before Width: | Height: | Size: 686 KiB |
Before Width: | Height: | Size: 2.2 MiB |
|
@ -1,27 +0,0 @@
|
|||
#+TITLE: Camp Prayer Warriors
|
||||
#+date: 2023-07-10T14:31:50-05:00
|
||||
#+tags: ministry, event, camp
|
||||
#+featured_image: featured.jpg
|
||||
#+showHero: true
|
||||
#+description: Bond together with others to pray for TFC Camp!
|
||||
#+summary: Bond together with others to pray for TFC Camp
|
||||
#+showAuthor: false
|
||||
#+showAuthorsBadge: true
|
||||
#+showTaxonomies: true
|
||||
#+showReadingTime: true
|
||||
#+showWordCount: true
|
||||
#+showDate: true
|
||||
#+layout: hero
|
||||
#+heroStyle: background
|
||||
#+showTableOfContents: false
|
||||
|
||||
** Welcome TFC Camp Prayer Warrior!
|
||||
We'd love for you to be a part of the TFC Camp prayer warriors! There are two main places to receive these updates. We'll be posting on Facebook for the many things you can be praying for, but if you'd like to have more real time communication with what's happening we have a chat room you can join on an app called Element to stay up to date and respond with your prayers so the staff will be able to read more frequently the things their communities are praying for camp and the students.
|
||||
|
||||
Make sure to follow our Facebook page to get those announcements! If you want to send back your prayers so the staff can have more real time connection with you, please follow along!
|
||||
|
||||
First you'll need an account on Element! Go [[https://app.element.io][here]] and create an account! Once you have an account, you'll need to [[https://matrix.to/#/#cpw:tfcconnection.org][click this link]] and join the room!
|
||||
|
||||
If for whatever reason the link is not working for you, that's ok! Send a message to @chriscochrun:tfcconnection.org in Element, and he'll send you an invite to the server!
|
||||
|
||||
As a final note, please follow us on [[http://facebook.com/tfcconnection][Facebook]] and you'll see daily updates with what's happening at camp!
|
Before Width: | Height: | Size: 58 KiB |
|
@ -1,14 +0,0 @@
|
|||
---
|
||||
title: "Coaching"
|
||||
date: 2022-10-27T13:14:44-05:00
|
||||
tags: ['ministry']
|
||||
featured_image: ""
|
||||
description: "Since disciplemaking is the heartbeat of TFC Connection, one of the services TFC offers is individual coaching with an emphasis on helping people discover..."
|
||||
summary: "Since disciplemaking is the heartbeat of TFC Connection, one of the services TFC offers is individual coaching with an emphasis on helping people discover..."
|
||||
weight: 100
|
||||
---
|
||||

|
||||
|
||||
Since disciplemaking is the heartbeat of TFC Connection, one of the services TFC offers is individual coaching with an emphasis on helping people discover how they were created to reflect the character of God as disciplemaker.
|
||||
|
||||
As a staff we have members who have been a part of the ministry for only a few years but some have been on staff for well over 30 years. We would love to share some of that experience with others who are working with youth. Some of the TFC staff are certified life coaches, and coaching has become a part of our staff culture. If you are interested in life coaching, TFC has staff who are trained to walk with you in that area.
|
Before Width: | Height: | Size: 980 KiB |
|
@ -1,12 +0,0 @@
|
|||
---
|
||||
title: "Connection Groups"
|
||||
date: 2022-10-27T06:31:50-05:00
|
||||
tags: ['ministry','event']
|
||||
featured_image: "featured.jpg"
|
||||
description: "The heartbeat of TFC is the weekly connection meeting. In locations where TFC provides community youth groups, connection meetings are held weekly..."
|
||||
summary: "The heartbeat of TFC is the weekly connection meeting. In locations where TFC provides community youth groups, connection meetings are held weekly..."
|
||||
weight: 10
|
||||
---
|
||||

|
||||
|
||||
The heartbeat of TFC is the weekly connection meeting. In locations where TFC provides community youth groups, connection meetings are held weekly and are designed to meet the emotional and spiritual needs of teenagers. Teens are taught the Word of God with the purpose of building a biblical foundation, igniting a passion for the Gospel, and developing the ability to share that message with others as disciple-makers.
|
Before Width: | Height: | Size: 693 KiB |
|
@ -1,15 +0,0 @@
|
|||
---
|
||||
title: "Internships"
|
||||
date: 2022-10-27T13:13:24-05:00
|
||||
tags: ['ministry']
|
||||
featured_image: ""
|
||||
description: "TFC provides opportunities to gain hands on experience in rural youth ministry through one of three internship programs. Each of these internship opportunities..."
|
||||
summary: "TFC provides opportunities to gain hands on experience in rural youth ministry through one of three internship programs. Each of these internship opportunities..."
|
||||
weight: 90
|
||||
---
|
||||
|
||||

|
||||
|
||||
TFC provides opportunities to gain hands on experience in rural youth ministry through one of three internship programs. Each of these internship opportunities are designed around a specific “season” of the ministry of TFC and youth ministry as a whole. Whether you are looking to experience the development and production of summer camp, all aspects of summer ministry within TFC (Mission Trips, SPLASH Trips, TFC Camp), or a full year in the trenches of weekly meetings, special events and summer ministry, TFC has a spot for you to grow your faith, develop skills and abilities, and serve the Lord in the context of rural youth ministry and disciple-making.
|
||||
|
||||
TFC is looking already looking for interns for next year! Talk to [Ethan](/staff/ethan-rose) or [Lavonne](/staff/lavonne-ponstein) now to get signed up!
|
Before Width: | Height: | Size: 2 MiB |
Before Width: | Height: | Size: 162 KiB |
|
@ -1,26 +0,0 @@
|
|||
---
|
||||
title: "Miriam's Hope & Cary, Mississippi"
|
||||
date: 2023-06-02
|
||||
tags: ["Cary, Mississippi", "Miriam's Hope", "Homestead Refuge", "Mission Trip"]
|
||||
featured_image: "featured.png"
|
||||
showHero: true
|
||||
description: "Brick by Brick"
|
||||
summary: "Brick by Brick"
|
||||
showAuthor: false
|
||||
showTableOfContents: true
|
||||
authors: ["chriscochrun"]
|
||||
showAuthorsBadge: true
|
||||
showTaxonomies: true
|
||||
---
|
||||
|
||||
Mission Trip this year is over, but we are so excited to share the news of what's been happening with you!
|
||||
|
||||
## Miriam's Hope/Homestead Refuge
|
||||
The Miriam's Hope team went to Oberlin, KS, to a little ministry called [Miriam's Hope](https://miriamshope.com), check back here for some insights into what happened and all the cool stories that will be shared! Continue to pray for these teenagers as they bring what God taught them home!
|
||||
|
||||

|
||||
|
||||
## Cary Mississippi
|
||||
The Cary Mississippi team worked hard with the Cary Christian Center down in Mississippi! To check what happened more, go back in our [Facebook](https://facebook.com/tfcconnection)! Also, you can check out more about the [Cary Christian Center](https://carychristiancenter.org "Cary Christian Center")
|
||||
|
||||

|
Before Width: | Height: | Size: 1.7 MiB |
|
@ -1,25 +0,0 @@
|
|||
---
|
||||
title: "Mission Trip 2024"
|
||||
date: 2023-08-23
|
||||
tags: ["mission-trip", "tfc"]
|
||||
newsletter: true
|
||||
featured_image: "featured.png"
|
||||
showHero: true
|
||||
description: ""
|
||||
summary: ""
|
||||
showAuthor: false
|
||||
showTableOfContents: true
|
||||
authors: ["Jeremy Ford"]
|
||||
showAuthorsBadge: true
|
||||
showTaxonomies: true
|
||||
---
|
||||
|
||||
# Mission Trip 2024
|
||||
|
||||
Some cool things happened!
|
||||
|
||||
##
|
||||
{{< pt src="https://videos.tfcconnection.org/videos/embed/193ae521-0064-4c78-a435-4cfb0ff86d2e" >}}
|
||||
{{< spacing >}}
|
||||
|
||||
{{< pt src="https://videos.tfcconnection.org/videos/embed/d2cf2a32-0d01-462c-8557-f1895046f3d0" >}}
|
|
@ -1,25 +0,0 @@
|
|||
---
|
||||
title: "Mission Trip"
|
||||
date: 2022-10-27T06:31:50-05:00
|
||||
tags: ['ministry','event']
|
||||
featured_image: "img/mt.jpg"
|
||||
description: "Our desire to see teenagers develop a heart for missions was the main force behind the development of mission trip opportunities over 30 years ago."
|
||||
summary: "Our desire to see teenagers develop a heart for missions was the main force behind the development of mission trip opportunities over 30 years ago."
|
||||
weight: 30
|
||||
showTableOfContents: false
|
||||
layout: simple
|
||||
groupByYear: true
|
||||
---
|
||||
|
||||

|
||||
|
||||
Our desire to see teenagers develop a heart for missions was the main force behind the development of mission trip opportunities over 30 years ago. These trips are designed to pull teens out of their comfort zone as they learn to see the needs of others through the lens of the Word of God. With an emphasis on prayer, personal devotions, and an “I’d be glad to” attitude, teens are challenged to see the world through the eyes of Jesus while serving as his hands and feet. Every year we offer several trips and each one is designed for a different level of spiritual maturity with a specific goal of moving students to the next level in the disciple-making process.
|
||||
|
||||
<!-- {{< button href="/mt-form" target="_self" >}} -->
|
||||
<!-- Sign up! -->
|
||||
<!-- {{< /button >}} -->
|
||||
|
||||
##
|
||||
{{< pt src="https://videos.tfcconnection.org/videos/embed/c92fc5dd-ebfd-4d13-b486-d08d281868f2" >}}
|
||||
|
||||
{{< spacing >}}
|
Before Width: | Height: | Size: 1 MiB |
Before Width: | Height: | Size: 276 KiB |
Before Width: | Height: | Size: 1 MiB |
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
title: "Special Events"
|
||||
date: 2022-10-27T13:13:43-05:00
|
||||
tags: ['ministry','event']
|
||||
featured_image: ""
|
||||
description: "Understanding that growing as a disciple is a process, through the years TFC has supplemented what was taught in weekly meetings with a variety of training and/or refreshing “getaway” opportunities."
|
||||
summary: "Understanding that growing as a disciple is a process, through the years TFC has supplemented what was taught in weekly meetings with a variety of training and/or refreshing “getaway” opportunities."
|
||||
weight: 20
|
||||
---
|
||||

|
||||
|
||||
Understanding that growing as a disciple is a process, through the years TFC has supplemented what was taught in weekly meetings with a variety of training and/or refreshing “getaway” opportunities. Whether through large conferences or ministry specific student leadership training events, teens have the chance to step away from the everyday routine in order to dig deeper in their walk with Christ and grow in their leadership skills. Through events like 180 Encounters, all-nighters and concerts, teens also have the opportunity to gather with friends from across our ministry area and enjoy extended time to fellowship with one another while growing deeper in their faith.
|
||||
|
||||

|
||||
|
||||
Want to learn more about 180 Encounters? Talk to [Lavonne](/staff/lavonne-ponstein).
|
Before Width: | Height: | Size: 669 KiB |
Before Width: | Height: | Size: 498 KiB |
|
@ -1,12 +0,0 @@
|
|||
---
|
||||
title: "Splash"
|
||||
date: 2022-10-27T13:12:45-05:00
|
||||
tags: ['ministry','event']
|
||||
featured_image: ""
|
||||
description: "In 2014 TFC developed this mission trip opportunity in response to the need for short local mission trip experiences. These trips focus on serving rural communities..."
|
||||
summary: "In 2014 TFC developed this mission trip opportunity in response to the need for short local mission trip experiences. These trips focus on serving rural communities..."
|
||||
weight: 50
|
||||
---
|
||||
")
|
||||
|
||||
In 2014 TFC developed this mission trip opportunity in response to the need for short local mission trip experiences. These trips focus on serving rural communities in our area for 2 to 3 days and they provide excellent faith building opportunities for teenagers and the adults who lead them. The trips are designed around the acrostic Surrender, Pray, Look, Ask, and Serve Happily – which is also the structure for these trips. We gather as a team to surrender our lives to God for his use and then we travel to a local community where we pray and begin looking for opportunities to serve as the Lord leads us to projects or people who need a helping hand.
|
Before Width: | Height: | Size: 730 KiB |
|
@ -1,11 +0,0 @@
|
|||
---
|
||||
title: "Volunteers"
|
||||
date: 2022-10-27T13:14:59-05:00
|
||||
tags: ['ministry']
|
||||
featured_image: ""
|
||||
description: "Within the ministry of TFC there are several opportunities for volunteers to be involved in ministry with teenagers."
|
||||
summary: "Within the ministry of TFC there are several opportunities for volunteers to be involved in ministry with teenagers. The weekly meetings are one of the main opportunities..."
|
||||
weight: 80
|
||||
---
|
||||

|
||||
Within the ministry of TFC there are several opportunities for volunteers to be involved in ministry with teenagers. The weekly meetings are one of the main opportunities for volunteers to join in with the ministry of TFC but we also provide other opportunities for people to join us in ministry with teenagers on mission trips and at TFC Camp. We appreciate all of our volunteers and our desire is that they grow in their faith along with the teenagers they are investing in.
|
|
@ -1,13 +0,0 @@
|
|||
---
|
||||
title: "Mission Trip Church Form"
|
||||
date: 2022-11-11T15:03:48-06:00
|
||||
omit_header_text: true
|
||||
layout: simple
|
||||
sharingLinks: false
|
||||
---
|
||||
|
||||
Mission Trip applications are closed until next year.
|
||||
|
||||
<!-- > This reference form will be confidential. If you need to, you can print this page and return it to TFC Connection 662 7th St Phillipsburg, KS 67661 by February 1st in order for your teen to be considered for Mission Trip. -->
|
||||
|
||||
<!-- {{< mt-church-form >}} -->
|
|
@ -1,59 +0,0 @@
|
|||
---
|
||||
title: Mission Trip Form
|
||||
omit_header_text: true
|
||||
layout: simple
|
||||
sharingLinks: false
|
||||
|
||||
---
|
||||
|
||||
Mission Trip applications are closed until next year.
|
||||
|
||||
<!-- If you are looking for the reference forms they are here, [parent](/mt-parent-form), [teacher](/mt-teacher-form), and [church-related](/mt-church-form)! Please click the appropriate one for them! Here is the [health form](/mt-health-form)! Also, if you need to pay please go [here](/donate). Thank you! -->
|
||||
|
||||
<!-- ## Mission Trip Options -->
|
||||
<!-- This year we have three options for mission trip! -->
|
||||
|
||||
<!-- ## Gallup, New Mexico - May 29 - June 10 - 8th Grade and above -->
|
||||
<!-- This trip is designed for students who are ready for the challenge of leaving their personal desires behind as they follow Jesus and help meet the needs of others. This southwestern experience will find us making our home base at the 117-year-old campus of Rehoboth Christian school, where we will work with and serve the people in the community, making a difference in the lives of a variety of people. -->
|
||||
|
||||
<!-- As a part of the Destination Rehoboth experience, we will volunteer at various locations in meaningful service projects both on and off of Rehoboth’s campus. Off-campus opportunities might include helping at the local food shelter, assisting Rehoboth families in need with home repair projects, or serving at churches on the reservation. Campus needs might include painting and minor repairs, or landscaping. -->
|
||||
|
||||
<!-- Requirements for this team are a flexible attitude and a willingness to do hands-on labor. For more information about RCS and their current projects, check out their [website](https://www.rcsnm.org) and their [Facebook page](https://www.facebook.com/rcsnm). -->
|
||||
|
||||
<!-- - Estimated Support Goal of $850-$950 -->
|
||||
|
||||
<!-- ## Puerto Escondido, Mexico - *June 2 - 9 - Highschool only -->
|
||||
<!-- This trip is designed for students who have a desire to be used by Jesus to draw others into a relationship with Him and they will be trained to go with the Gospel as His ambassadors. We will be working with the ministry of Roca Blanca Mission Base in Puerto Escondido, Mexico. There are a variety of ways to serve this ministry, we might lead a VBS, work in their orphanage, assist with village ministry, work on building projects, or possibly help deliver food or clothing. -->
|
||||
|
||||
<!-- Requirements for this team are a willingness and desire to share the gospel of Jesus verbally, -->
|
||||
<!-- relationally, and through physical work. Here is more information about [Roca Blanca](https://rocablanca.org). -->
|
||||
|
||||
<!-- - Estimated Support Goal of $1900-$2100 -->
|
||||
|
||||
<!-- > You must have a passport for this trip. This will be an approximate $135 (including photo fee) additional personal expense. Allow for 6-8 weeks or pay an additional $60 for 2-3 week turn around. -->
|
||||
|
||||
<!-- > \* Dates may vary slightly due to flight schedules -->
|
||||
|
||||
<!-- ### Mexico Travel Info -->
|
||||
<!-- The Roca Blanca Mission Base is located in the safest and most secure area of Mexico, according to the US State Department, well and easily patrolled, virtually free from the drug and other violence issues that are plaguing the border towns and Mexico’s large cities. For more detailed official US State Department information [click here.](https://travel.state.gov/content/travel/en/traveladvisories/traveladvisories/mexico-travel-advisory.html) After a series of general warnings for Mexico they have a state by state listing. For reference, we’re located in the State of Oaxaca where there are no travel warnings in effect. -->
|
||||
|
||||
<!-- With the same common sense precautions that you would take traveling anywhere, our coastal area is still the safe place to visit that it has been for many decades, safer than visiting many US cities. -->
|
||||
|
||||
<!-- It’s easy to forget just how big Mexico is, and how far our location is from the warning areas! If you visit us, in most cases your flight will arrive directly to Huatulco (HUX), or by means of the Mexico City airport to Puerto Escondido (PXM), these being our nearest international airports. There we meet you at the airport and drive you here. You’re not within a thousand miles of a border town or hundreds of miles from a city with a warning. We also begin your stay here with an orientation, which includes safety tips to avoid any danger that might present itself. We live here and we raise our children here. You can trust our record of many years of safety for visitors and students. -->
|
||||
|
||||
<!-- ## 1-2 Day Local Trip - TBD -->
|
||||
<!-- Formerly known as the SPLASH trip, this trip will be within 2 hours of the TFC office in Phillipsburg, KS and will be a 2 day trip where you can get a taste for a longer mission trip. If you don’t feel ready to go on a longer trip, or have scheduling conflicts with the other trips, this is the trip for you! You will still have the opportunity to serve and grow in your faith in Jesus. Click the button below to sign up for this trip! -->
|
||||
|
||||
<!-- {{< button href="/local-trip-form">}} -->
|
||||
<!-- Local Trip -->
|
||||
<!-- {{< /button >}} -->
|
||||
|
||||
<!-- ## Mission Trip Agreement -->
|
||||
<!-- > In order to fill out the application, you must agree to the following! -->
|
||||
|
||||
<!-- - I agree to obey all rules and guidelines that TFC Connection and other associated ministries establish, realizing they have my best interest and welfare in mind. I will trust their judgment and obey them. **The staff have the right to confront me if they see a problem in my attitude or in my obeying the rules.** -->
|
||||
<!-- - I agree to participate in the support raising part of this project. Even though I may have the finances to pay my own way, I will send out a _**minimum of 10 letters**_ to people who would be interested in this project. **I will also respect the deadlines to get my letters in the mail and realize this may lead to my dismissal from a trip if I haven’t done my part.** -->
|
||||
<!-- - I acknowledge that I am expected to do my share of the work on the mission trip and I will be willing to do what is asked of me with an "I'd be glad to" attitude. -->
|
||||
<!-- - **I will work at making this mission trip a priority!** even if other events come up after I am accepted on a mission trip, I will commit to still go on this trip. -->
|
||||
|
||||
<!-- {{< mt-form >}} -->
|
|
@ -1,13 +0,0 @@
|
|||
---
|
||||
title: "Mission Trip Health Form"
|
||||
date: 2022-12-31T14:27:16-06:00
|
||||
omit_header_text: true
|
||||
layout: simple
|
||||
sharingLinks: false
|
||||
---
|
||||
|
||||
> You will need to fill out this health form in order to finish your mission trip application.
|
||||
|
||||
Since our health forms are only active from May to May even if you have finished the health form previously, you need to do so again in order to be eligible for mission trip since they are during May and June.
|
||||
|
||||
{{< health-form >}}
|
|
@ -1,13 +0,0 @@
|
|||
---
|
||||
title: "Mission Trip Parent Form"
|
||||
date: 2022-11-11T14:47:35-06:00
|
||||
omit_header_text: true
|
||||
layout: simple
|
||||
sharingLinks: false
|
||||
---
|
||||
|
||||
Mission Trip applications are closed until next year.
|
||||
|
||||
<!-- > This reference form is to help us understand your teenager better and it will be kept confidential. We consider it a privilege to work with your teenager, but as we consider them for this mission project, we would appreciate your valuable insight. If you need to, you can print this page and return it to TFC Connection 662 7th St Phillipsburg, KS 67661 by February 1st in order for your teen to be considered for Mission Trip. -->
|
||||
|
||||
<!-- {{< mt-parent-form >}} -->
|
|
@ -1,13 +0,0 @@
|
|||
---
|
||||
title: "Mission Trip Teacher Form"
|
||||
date: 2022-11-11T15:03:43-06:00
|
||||
omit_header_text: true
|
||||
layout: simple
|
||||
sharingLinks: false
|
||||
---
|
||||
|
||||
Mission Trip applications are closed until next year.
|
||||
|
||||
<!-- > Thank you for taking the time to fill out the form. This reference form will be confidential. If you need to, you can print this page and return it to TFC Connection 662 7th St Phillipsburg, KS 67661 by February 1st in order for your teen to be considered for Mission Trip. -->
|
||||
|
||||
<!-- {{< mt-teacher-form >}} -->
|
|
@ -1,20 +0,0 @@
|
|||
---
|
||||
title: "Newsletters"
|
||||
date: 2022-10-28T12:00:00-05:00
|
||||
groupByYear: true
|
||||
showAuthorsBadges: true
|
||||
showTaxonomies: true
|
||||
cascade:
|
||||
showDate: true
|
||||
showWordCount: true
|
||||
showReadingTime: true
|
||||
showEdit: false
|
||||
showTaxonomies: true
|
||||
showSummary: true
|
||||
showBreadcrumbs: true
|
||||
sharingLinks: ['facebook', 'instagram', 'email', 'reddit']
|
||||
showHero: true
|
||||
showAuthorsBadge: true
|
||||
---
|
||||
If you'd like to read the newsletters that individual staff write, check them out here!
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
---
|
||||
title: "Staff"
|
||||
date: 2017-03-02T12:00:00-05:00
|
||||
featured_image: "img/staff.jpg"
|
||||
groupByYear: false
|
||||
cascade:
|
||||
showWordCount: false
|
||||
showReadingTime: false
|
||||
showEdit: false
|
||||
showTaxonomies: true
|
||||
showSummary: true
|
||||
showBreadcrumbs: true
|
||||
showTableOfContents: true
|
||||
sharingLinks: ['facebook', 'instagram', 'email', 'reddit']
|
||||
showHero: false
|
||||
---
|
||||
Staff are what make TFC happen. These people give their time, energy, and money to making sure TFC happens and are constantly following the Lord to His purpose for the communities they work in.
|
||||
|
||||
> If you'd like to check out newsletters written by ALL the staff [click here](/newsletters "newsletters").
|
Before Width: | Height: | Size: 126 KiB |
|
@ -1,13 +0,0 @@
|
|||
---
|
||||
title: "April Teves"
|
||||
date: 2022-10-28T15:25:50-05:00
|
||||
tags: ["Staff", "Logan", "Wakeeney"]
|
||||
featured_image: ""
|
||||
description: "Arnie and April moved to Logan, Kansas in October of 2009."
|
||||
layout: "simple"
|
||||
summary: "Arnie and April moved to Logan, Kansas in October of 2009. April’s grandfather’s family homesteaded south of Logan and she grew up coming to Logan every year for family reunions."
|
||||
weight: 70
|
||||
---
|
||||

|
||||
|
||||
Arnie and April moved to Logan, Kansas in October of 2009. April’s grandfather’s family homesteaded south of Logan and she grew up coming to Logan every year for family reunions. So, when they moved here, it was like moving to her hometown, although she was raised in Colorado. Shortly after they moved here, April joined TFC staff and eventually became the leader of the Logan TFC group. They now co-lead the Logan group with Lewis and Susan Smith from Phillipsburg and they love being part of the community of Logan, getting to know the families and the teens, and teaching the teens about Jesus! April also leads the junior high group in Wakeeney in partnership with the Church of God.
|
Before Width: | Height: | Size: 68 KiB |
|
@ -1,13 +0,0 @@
|
|||
---
|
||||
title: "Billy Cayou"
|
||||
date: 2022-10-28T15:25:34-05:00
|
||||
tags: ['Staff', 'Phillipsburg']
|
||||
featured_image: ""
|
||||
description: "Billy grew up in Oxford, Nebraska and was a part of Southern Valley TFC throughout Middle School and High School."
|
||||
layout: "simple"
|
||||
summary: "Billy grew up in Oxford, Nebraska and was a part of Southern Valley TFC throughout Middle School and High School. During college..."
|
||||
weight: 80
|
||||
---
|
||||

|
||||
|
||||
Billy grew up in Oxford, Nebraska and was a part of Southern Valley TFC throughout Middle School and High School. During college, Billy was a summer intern for a few years and in the fall of 2021 he began his year long internship. During those years God placed a desire in Billy to serve in the ministry where he loved so dearly, then he joined staff in the fall of 2022. Billy handles our social media and helps lead the Phillipsburg Group with Brian and Julie Fischer.
|