updating front page after mission trip apps ending

This commit is contained in:
Chris Cochrun 2025-02-07 17:15:43 -06:00
parent be2a2cf1e7
commit 6df2cd59bf
4 changed files with 46 additions and 17 deletions

View file

@ -2088,6 +2088,10 @@ select {
width: 9rem;
}
.w-1\/2 {
width: 50%;
}
.w-12 {
width: 3rem;
}
@ -5502,6 +5506,10 @@ pre {
flex-basis: 25%;
}
.md\:basis-1\/2 {
flex-basis: 50%;
}
.md\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

View file

@ -16,6 +16,23 @@ Teens For Christ Connection (TFC) is a rural ministry reaching out to the missio
<!-- {{< /typeit >}} -->
<!-- </span> -->
<div class="flex flex-wrap items-center">
<span class="basis-full md:basis-1/2 items-center">
{{< typeit tag=h2 lifeLike=true >}}
TFC Camp planning has already begun!
{{< /typeit >}}
</span>
</div>
### Mark your calendars for these dates!
- July 21-25
- July 28-Aug 1
{{< spacing height=h-4 >}}
{{< pt src="https://videos.tfcconnection.org/videos/embed/0e6378c4-bb58-4fb1-8edf-72b73efc5ad2" >}}
<!-- <span class="grow"> -->
<!-- <span class="basis-full md:basis-1/4 items-center mt-6"> -->
@ -33,27 +50,26 @@ Teens For Christ Connection (TFC) is a rural ministry reaching out to the missio
<!-- ////////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>
<!-- <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="grow"> -->
<span class="basis-full md:basis-1/4 items-center mt-6">
{{< button href="/mt-form" >}}
Fill out now!
{{< /button >}}
</span>
</div>
<!-- <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.
> If you still need to fill out a mission trip form you can do so [here](/mt-form) and if you need to fill out a health form still, 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.
{{< pt src="https://videos.tfcconnection.org/videos/embed/aa14bf70-adc8-4efd-b15b-37c59b31f418" >}}
## 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.

View file

@ -15,6 +15,9 @@ 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 “Id 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.
> If you still need to fill out a mission trip form you can do so [here](/mt-form) and if you need to fill out a health form still, 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.
<!-- {{< button href="/mt-form" target="_self" >}} -->
<!-- Sign up! -->
<!-- {{< /button >}} -->

View file

@ -1,6 +1,8 @@
{{- $vid := .Get "src" -}}
{{- $abs := .Get "abs" | default true -}}
{{- $width := .Get "width" | default "w-full" -}}
{{- $aspect := .Get "aspect" | default "aspect-video" -}}
<div style="display: flex;" class="w-full">
<iframe class="pt-vid flex-auto aspect-video w-full" sandbox="allow-same-origin allow-scripts allow-popups" src="{{ $vid }}?warningTitle=0" frameborder="0" allowfullscreen></iframe>
<div style="display: flex;" class="{{ $width }}">
<iframe class="pt-vid flex-auto {{ $aspect }} {{ $width }}" sandbox="allow-same-origin allow-scripts allow-popups" src="{{ $vid }}?warningTitle=0" frameborder="0" allowfullscreen></iframe>
</div>