ordering ministries by weight

This commit is contained in:
Chris Cochrun 2022-11-04 11:07:38 -05:00
parent a61a5b19e8
commit 6eb8468e3a
11 changed files with 51 additions and 0 deletions

View file

@ -5,6 +5,7 @@ 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
---
![alumni](featured.jpg "An alumni volunteering at Camp")

View file

@ -5,5 +5,6 @@ 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.

View file

@ -5,6 +5,7 @@ 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 70s and early 80s, 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 70s and early 80s, the ministry leadership decided to begin designing their own camp experience..."
weight: 40
---
![camp](featured.jpg "2022 Camp Picture")

View file

@ -5,5 +5,6 @@ tags: ['ministry']
featured_image: ""
description: "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."
summar: "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."
weight: 100
---
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. As a group, the staff at TFC has around 200 years of combined ministry experience and we would like to share some of that experience with others who are working with youth. Several of the TFC staff members are certified life coaches as well. Coaching is a part of our staff culture and interns receive a significant amount of coaching but we also offer coaching to people outside of TFC including volunteer and paid youth workers.

View file

@ -5,6 +5,7 @@ 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
---
![Connection Groups](featured.jpg "The Thunder Ridge group listening to a lesson.")

View file

@ -5,6 +5,7 @@ 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
---
![Camp Interns](featured.jpg "Summer Intern Team for 2022!")

View file

@ -5,6 +5,7 @@ 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
---
![mission trip](featured.jpg "Last year's SPLASH 2.0 Trip in North Platte")

View file

@ -5,6 +5,7 @@ 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
---
![180 Encounters](featured.jpg "Worship at our 180 Encounter")

View file

@ -5,6 +5,7 @@ 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
---
![SPLASH](featured.jpg "A group of teens working on a SPLASH trip at [Miriam's Hope](https://www.miriamshope.com/)")

View file

@ -5,6 +5,7 @@ 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
---
![volunteers](featured.jpg "volunteers at camp")
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.

View file

@ -0,0 +1,41 @@
{{ define "main" }}
{{ $toc := and (.Params.showTableOfContents | default (.Site.Params.list.showTableOfContents | default false)) (in .TableOfContents "<ul") }}
<header>
{{ if .Params.showBreadcrumbs | default (.Site.Params.list.showBreadcrumbs | default false) }}
{{ partial "breadcrumbs.html" . }}
{{ end }}
<h1 class="mt-0 text-4xl font-extrabold text-neutral-900 dark:text-neutral">{{ .Title }}</h1>
</header>
<section
class="{{ if $toc -}}
mt-12
{{- else -}}
mt-0
{{- end }} prose flex max-w-full flex-col dark:prose-invert lg:flex-row"
>
{{ if $toc }}
<div class="order-first px-0 lg:order-last lg:max-w-xs ltr:lg:pl-8 rtl:lg:pr-8">
<div class="toc ltr:pl-5 rtl:pr-5 lg:sticky lg:top-10">
{{ partial "toc.html" . }}
</div>
</div>
{{ end }}
<div class="min-w-0 min-h-0 max-w-prose">
{{ .Content | emojify }}
</div>
</section>
{{ if gt .Pages 0 }}
<section class="space-y-10 w-full">
{{ range .Pages.ByWeight }}
{{ partial "article-link.html" . }}
{{ end }}
</section>
{{ partial "pagination.html" . }}
{{ else }}
<section class="mt-10 prose dark:prose-invert">
<p class="py-8 border-t">
<em>{{ i18n "list.no_articles" | emojify }}</em>
</p>
</section>
{{ end }}
{{ end }}