adding just and hiding the camp form

This commit is contained in:
Chris Cochrun 2024-03-20 09:31:39 -05:00
parent a4803160b5
commit 432436c0c1
5 changed files with 36 additions and 20 deletions

View file

@ -6,27 +6,29 @@ sharingLinks: false
--- ---
{{< floating-button icon="chevron-down" text="To the form!" link="#form" >}} We are currently working on updating the form!! Check back soon to get signed up for camp!!
{{< pt src="https://videos.tfcconnection.org/videos/embed/30c22854-51ab-4c10-a5a2-034b0e506abf" width="700" height="576">}}
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). <!-- {{< floating-button icon="chevron-down" text="To the form!" link="#form" >}} -->
<!-- {{< pt src="https://videos.tfcconnection.org/videos/embed/30c22854-51ab-4c10-a5a2-034b0e506abf" width="700" height="576">}} -->
## Dates <!-- 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). -->
- Week 1 - July 17 - July 21
- ~~Week 2 - July 24 - July 28~~ **Week 2 is full for now**, if you'd still like to go, you can ask your TFC leader and possibly be put on a waiting list.
## Cost <!-- ## Dates -->
We have an early bird registration, so if you register by certain dates, you'll save some money! <!-- - Week 1 - July 17 - July 21 -->
- By May 3: $65 with registration plus $100 due at camp and a free t shirt! <!-- - ~~Week 2 - July 24 - July 28~~ **Week 2 is full for now**, if you'd still like to go, you can ask your TFC leader and possibly be put on a waiting list. -->
- By June 23: $85 with registration plus $100 due at camp and a free t shirt!
- After June 23: $85 with registration plus $100 due at camp... _NO FREE T SHIRT!!!_
## Location <!-- ## Cost -->
Camp Joy in Republican City, NE <!-- We have an early bird registration, so if you register by certain dates, you'll save some money! -->
<!-- - By May 3: $65 with registration plus $100 due at camp and a free t shirt! -->
<!-- - By June 23: $85 with registration plus $100 due at camp and a free t shirt! -->
<!-- - After June 23: $85 with registration plus $100 due at camp... _NO FREE T SHIRT!!!_ -->
[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) <!-- ## Location -->
<!-- http://umap.openstreetmap.fr/en/map/anonymous-edit/888075:134YBQNTmQ2pkJ76ur0PJ8KPuAc --> <!-- Camp Joy in Republican City, NE -->
{{< map mapName="campmap_888075" >}} <!-- [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 -\-> -->
{{< camp-form >}} <!-- {{< map mapName="campmap_888075" >}} -->
<!-- {{< camp-form >}} -->

View file

@ -3,12 +3,12 @@ title: "Northern Valley"
date: 2022-10-28T10:19:57-05:00 date: 2022-10-28T10:19:57-05:00
tags: ["Chris Cochrun", "Dani Rouse"] tags: ["Chris Cochrun", "Dani Rouse"]
featured_image: "featured.jpg" featured_image: "featured.jpg"
summary: "- Start Time: Wednesday, 6:00 PM (Supper provided)\n- End Time: 8:30\n- Location: Almena Community Building\n- Ages: 6-8th Grade" 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 weight: 30
--- ---
![Northern Valley](featured.jpg "The Nothern Valley Group") ![Northern Valley](featured.jpg "The Nothern Valley Group")
- Start Time: Wednesday, 6:00 PM (Supper provided) - Start Time: Wednesday, Junior High 5:00 PM, High School 6:30 PM (supper for both at 6:30)
- End Time: 8:30 - End Time: 8:30
- Location: Almena Community Building - Location: Almena Community Building
- Ages: 6-12th Grade - Ages: 6-12th Grade

13
justfile Normal file
View file

@ -0,0 +1,13 @@
default:
just --list
build:
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
server:
hugo server --noHTTPCache --disableFastRender
dev:
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
clean:
cargo clean
rm -rf bld/
test:
RUST_LOG=debug cargo test --benches --tests --all-features -- --nocapture

View file

@ -48,7 +48,7 @@
} }
}; };
/* xhr.open("POST", "https://n8n.tfcconnection.org/webhook/mt-application"); */ /* xhr.open("POST", "https://n8n.tfcconnection.org/webhook/mt-application"); */
xhr.open("POST", "https://n8n.tfcconnection.org/webhook/camp-form"); xhr.open("POST", "https://api.tfcconnection.org/camp-form");
xhr.send(data); xhr.send(data);
console.log(data); console.log(data);
console.log("Hallo!"); console.log("Hallo!");

View file

@ -39,6 +39,7 @@ in mkShell rec {
cargo cargo
rustfmt rustfmt
rust-analyzer rust-analyzer
just
]; ];
shellHook = '' shellHook = ''