Skip to content

Commit

Permalink
content
Browse files Browse the repository at this point in the history
  • Loading branch information
TomConner committed Oct 27, 2022
1 parent 29c97f4 commit fdc6c21
Show file tree
Hide file tree
Showing 19 changed files with 361 additions and 41 deletions.
Empty file added .hugo_build.lock
Empty file.
25 changes: 8 additions & 17 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@ defaultContentLanguage: en
title: Cayman
theme: cayman-hugo-theme

# Google analytics
googleAnalytics: UA-123456789-1

# Disqus comments
disqusShortname: yourdiscussshortname

# Syntax highlighting
pygmentsCodefences: true
pygmentsStyle: pygments
Expand All @@ -23,15 +17,15 @@ permalinks:

params:
# Header text, can be markdown
project_name: Cayman Hugo Theme
project_tagline: A clean, responsive Hugo theme, ported from the original Jekyll Cayman theme
project_name: 2023 Pembroke Troop 105 Tree Drive
project_tagline: Let the Scouts Pick Up and Recycle Your Christmas Tree!

# Date format for post list and single pages
# For more date formats see https://gohugo.io/functions/format/
dateFormat: 2006-01-02

# Footer text, can be markdown
footer: Made with [Hugo](https://gohugo.io/). Themed by [Cayman](https://github.com/zwbetz-gh/cayman-hugo-theme). Deployed to [Netlify](https://www.netlify.com/).
#footer: (replaced with shortcode)

# If true, the CSS/JS for Katex math typesetting are enabled
katex: true
Expand Down Expand Up @@ -62,18 +56,15 @@ params:

menu:
nav:
- name: Blog
- name: Welcome
url: /
weight: 1
- name: Tags
url: /tags/
- name: Details
url: /details/
weight: 2
- name: About
url: /about/
weight: 3
- name: Register
url: /register/
weight: 3
- name: RSS
url: /index.xml
- name: Lost & Found
url: /lostfound/
weight: 4
21 changes: 21 additions & 0 deletions content/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
title: Christmas Tree Curbside Pickup & Recycling
---

## Pickup Day: Saturday, January 7, 2023

* Place your tree curbside by 9:00 am
* No tinsel, nails/screws or ornaments should be left on the tree.
* For residents of Pembroke, MA

## Donation

Amount: $12 **per tree**, payable as you choose:

* Pay online with [registration](register).
* Attach plastic bag with cash or check payable to Troop 105.
* Mail check.

## Thank You
Troop 105 would like to thank Top Notch Tree for their contribution to our Tree Drive each year by chipping 100's of trees that we pick up from Pembroke residents.  We are grateful for your help!

24 changes: 0 additions & 24 deletions content/about/index.md

This file was deleted.

45 changes: 45 additions & 0 deletions content/details/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
title: "Details"
date: 2019-03-29
---

The Scouts of Troop 105 will be in your Pembroke neighborhood on Saturday, January 7, 2023 to pick up your Christmas tree curbside in exchange for a $12 donation.  To register for your tree to be picked up, please click here or go to the Register tab at the top of this website.  Please register by January 6th.  **Thank you** to the Pembroke residents who support our effort each year!

## Curbside Pickup Day

Saturday January 7, 2023
9:00 am – 3:00 pm

Please have your tree out by the curb by 9:00 am.

## Artificial Tree or No Tree?

If you have an artificial tree, or no tree, but would like to support Pembroke Troop 105's Scouting program, please go to the bottom of our Registration page to make a donation via Venmo or Zelle or please mail your donation to us at:

{{< address >}}

## Leaving Your Tree for Curbside Pickup

### The Do’s

Please remove all ornaments and the tree stand before leaving your tree for pickup.

Place the tree curbside in front of your residence.  If special instructions to locate your residence or your tree are needed, please include that information in the Comments section of your on-line registration.

Please have your tree out by 9:00 am on Saturday, January 7th before our tree pickup begins.

### The Don’ts

We cannot accept trees with tinsel, trees with nails or screws (please remove tree stand), artificial trees, wreaths with metal shape wires, or trees with any other metal attached.  Thank you for your understanding.

## Problems? Questions? Missed Tree?

The Tree Drive is an all-volunteer effort by Scouts and their adult leaders and parents.  Should you have any questions or encounter any issues, you can contact us.

If we miss your tree on Saturday, January 7th, please let us know ASAP.  There may be limited pickup on the Sunday morning after pickup day.

Please be aware that inclement weather may interfere with our tree pickup.  We will do our best to contact all our registered customers if we anticipate a change of date due to inclement weather.  If inclement weather is in our forecast, please check your email and/or Pembroke Connect and Pembroke Chat on Facebook for our updates.  The safety of our Scouts and volunteers is our priority.

## Thank You

Thank you to the many families and individuals who support our effort each year.
9 changes: 9 additions & 0 deletions content/lostfound/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: "Lost & Found"
date: 2019-03-29
---

Sometimes we find ornaments that people have left on their trees. We will take a
picture and post them on this page. Please contact
[[email protected]](mailto:[email protected]) if one of the ornaments
is yours.
11 changes: 11 additions & 0 deletions content/register/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: "Register"
date: 2019-03-29
---


{{< shopify-buy-button-t105 >}}

You don’t have a tree but would like to donate to Troop 105?

We appreciate all donations! Please use the botton above or you can mail us a check payable to Troop 105 - address below.
16 changes: 16 additions & 0 deletions layouts/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
<ul>
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ range $pages.ByPublishDate.Reverse }}
<li>
{{ $dateFormat := $.Site.Params.dateFormat | default "Jan 2, 2006" }}
{{ .PublishDate.Format $dateFormat }}
<a href="{{ .Permalink }}">
{{ .Title }}
</a>
</li>
{{ end }}
</ul>
{{ .Content }}
{{ end }}
13 changes: 13 additions & 0 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<footer class="site-footer">
<h2 id="your-support-is-greatly-appreciated">Your support is greatly appreciated!</h2>
<span class="site-footer-credits">
<p>
BSA Troop 105 - Pembroke<br/>
P.O. Box 441<br/>
Pembroke, MA 02358
</p>
<p>
Web: <a href="https://pembroket105.org">Troop 105</a> | Email: <a href="mailto:[email protected]">[email protected]</a> | Social: xx? | Social: yy?
</p>
</span>
</footer>
5 changes: 5 additions & 0 deletions layouts/shortcodes/address.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<p>
BSA Troop 105 - Pembroke<br/>
P.O. Box 441<br/>
Pembroke, MA 02358
</p>
1 change: 1 addition & 0 deletions layouts/shortcodes/shopify-buy-button-t105.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<input type=submit value="Buy Button placeholder"></input>
Loading

0 comments on commit fdc6c21

Please sign in to comment.