Adding some basic content to the site

This commit is contained in:
2025-03-22 21:49:35 -04:00
parent 2716cc5d1a
commit adda66a449
8 changed files with 64 additions and 18 deletions

7
content/_index.md Normal file
View File

@@ -0,0 +1,7 @@
---
title: "Halloween at the Jeffers"
date: 2025-03-22T00:59:32-04:00
draft: false
params:
warning: 'This site is under (somewhat) active development. More content will be added in the next few months, leading up to Open Sauce 2025.'
---

View File

@@ -1,8 +1,13 @@
---
title: "2021 Scarecrows in a Pumpkin Patch"
date: 2022-11-03T00:59:32-04:00
draft: true
date: 2021-10-31T11:59:32-04:00
draft: false
tags: ["scarecrow", "pumpkins"]
---
Scarecrows come alive in the pumpkin patch.
<!--more-->
## The display
{{< youtube 1HFk4jqojxo >}}

View File

@@ -1,8 +1,14 @@
---
title: "2022 Circus"
date: 2022-11-03T00:59:32-04:00
draft: true
draft: false
tags: ["circus", "clowns"]
---
Clowns ran the freak show...
<!--more-->
## The display
{{< youtube YkHS6GdDe1E >}}

View File

@@ -1,8 +1,13 @@
---
title: "2023 Pirates of the Chantilly"
date: 2022-11-03T00:59:32-04:00
draft: true
date: 2023-10-31T11:59:32-04:00
draft: false
tags: ["pirates", "skeletons"]
---
Yo-ho, yo-ho, a pirate's afterlife for me.
<!--more-->
## The display
{{< youtube Jg0OLqWw9zc >}}

View File

@@ -1,9 +1,13 @@
---
title: "2024 Goosebumps Alive"
date: 2024-10-31T11:59:32-04:00
draft: true
draft: false
tags: ["goosebumps", "skeletons", "slappy"]
---
The books come alive! Or undead...
<!--more-->
## The display
{{< youtube HKWBYlws1qM >}}
@@ -18,8 +22,7 @@ Lorem ipsum
| Item | Source | Date Acquired | Price |
| ----------- | ----------- | ------------- | ----- |
| Header | Title | | |
| Paragraph | Text | | |
| | | | |
| Total | | | $ |
{{< /table >}}
@@ -28,7 +31,7 @@ Lorem ipsum
Some more stuff
## post mortem/what we didn't have time for
## Post mortem/what we didn't have time for
- We ran out of candy _and_ books! We started with 30 books and 144 full candy bars,
and as we were running out we got a donation from a kid's mom for another 25+,
@@ -39,10 +42,10 @@ Some more stuff
it working earlier that day. Did not get strong wifi for SSH, so troubleshooting was
laggy. A simple reboot fixed it later that night.
Wind knocked over a book and made it hard to keep the book in Skelly's hands
- Wind knocked over a book and made it hard to keep the book in Skelly's hands
Kids touched things they shouldn't have, laser, slappy, walked anywhere not blocked by rope
- Kids touched things they shouldn't have: laser, slappy, walked anywhere not blocked by rope.
Filled fog reservoir, and with timer at full tilt we emptied it after a couple hours or so
- Filled fog reservoir, and with timer at full tilt we emptied it after a couple hours or so
YouTube videos of music will have ads
- YouTube videos of music will have ads (without Premium), so being lazy and not preparing audio files this year was foolish.

View File

@@ -3,10 +3,10 @@
{{ range .Pages.ByPublishDate.Reverse }}
<p>
<h3 class="title is-3"><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
<div class="summary" href="{{ .RelPermalink }}">
{{ .Summary }}
</div>
{{ partial "metadata.html" . }}
<a class="summary" href="{{ .RelPermalink }}">
<p>{{ .Summary }}</p>
</a>
</p>
{{ end }}
{{ end }}

View File

@@ -1,9 +1,16 @@
{{ define "main" }}
<section class="hero">
<div class="hero-body">
<p class="title">
<h1 class="title">
{{ .Site.Title }}
</p>
</h1>
{{if .Params.warning }}
<div class="notification is-warning">
<button class="delete"></button>
{{ .Params.warning }}
</div>
{{ end }}
{{ .Content }}
</div>
</section>
{{ end }}

View File

@@ -6,3 +6,16 @@
</p>
</div>
</footer>
{{ if .Params.warning }}
<script>
document.addEventListener('DOMContentLoaded', () => {
(document.querySelectorAll('.notification .delete') || []).forEach(($delete) => {
const $notification = $delete.parentNode;
$delete.addEventListener('click', () => {
$notification.parentNode.removeChild($notification);
});
});
});
</script>
{{ end }}