Fixed broken menu items and added new content
Some checks failed
Deploy to Netlify / Deploy Hugo site to Netlify (push) Failing after 11s

This commit is contained in:
Alan Youngblood 2025-05-05 19:05:59 -04:00
parent 2f5524cf5d
commit 934f9dd1ff
19 changed files with 71 additions and 6 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 KiB

View File

@ -0,0 +1,24 @@
---
title: "YMCA Christmas Party Dec 2024"
date: 2025-05-02T13:00:00-05:00
description: "YMCA hosted Christmas Party in Dec 2024"
tags: ["posts", "gallery"]
---
# YMCA Christmas Party 2024
The families of the children came and their parents got a chance to meet our tutors and to mingle with the children. It was a community family event.
{{< figure src="images/20241209_181923 Large.jpeg" title="YMCA Xmas 24 Photo 1" >}}
{{< figure src="images/20241209_181944 Large.jpeg" title="YMCA Xmas Photo 2" >}}
{{< figure src="images/20241209_182011 Large.jpeg" title="YMCA Xmas Photo 3" >}}
{{< figure src="images/20241209_182016 Large.jpeg" title="YMCA Xmas Photo 4" >}}
{{< figure src="images/20241209_182039 Large.jpeg" title="YMCA Xmas Photo 5" >}}
{{< figure src="images/20241209_182102 Large.jpeg" title="YMCA Xmas Photo 6" >}}
{{< figure src="images/20241209_182127 Large.jpeg" title="YMCA Xmas Photo 7" >}}
{{< figure src="images/20241209_182133 Large.jpeg" title="YMCA Xmas Photo 8" >}}
{{< figure src="images/20241209_182139 Large.jpeg" title="YMCA Xmas Photo 9" >}}
{{< figure src="images/20241209_182151 Large.jpeg" title="YMCA Xmas Photo 10" >}}
{{< figure src="images/20241209_182157 Large.jpeg" title="YMCA Xmas Photo 11" >}}
{{< figure src="images/20241209_182209 Large.jpeg" title="YMCA Xmas Photo 12" >}}
{{< figure src="images/20241209_182221 Large.jpeg" title="YMCA Xmas Photo 13" >}}

View File

@ -7,7 +7,7 @@ enableEmoji = true
[params]
body_classes = "avenir black bg-light-yellow"
text_color = "black"
author = ""
author = "New Beginnings Community Operations"
favicon = ""
site_logo = ""
description = "We are a nonprofit 501(c)(3) organization serving at risk youths and elders in the Raleigh area."
@ -16,8 +16,17 @@ enableEmoji = true
f2_color = "black"
custom_css = ["custom-site.css"]
[[params.ananke_socials]]
name = "facebook"
url = "https://www.facebook.com/groups/641256017286732"
label = "Facebook"
color = "#3b5998"
[params.ananke.social.follow]
new_window_icon = false
networks = [
"facebook",
]
#[params.ananke.social.twitter]
#name = "twitter"
#url = "https://twitter.com/GoHugoIO"
#
[params.ananke.social.facebook]
profilelink = "https://www.facebook.com/groups/641256017286732"
username = "Facebook"
# color = "#3b5998"

View File

@ -0,0 +1,32 @@
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l center items-center justify-between">
<a href="{{ .Site.Home.RelPermalink }}" class="f3 fw2 hover-white white-90 dib no-underline">
{{ with .Site.Params.site_logo }}
<img src="{{ urls.RelURL . }}" class="w100 mw5-ns" alt="{{ $.Site.Title }}" />
{{ else }}
{{ .Site.Title }}
{{ end }}
</a>
<div class="flex-l items-center">
{{ partials.Include "i18nlist.html" . }}
{{ if .Site.Menus.main }}
<ul class="{{ compare.Conditional (compare.Eq $.Site.Language.LanguageDirection "rtl") "pr0 ml3" "pl0 mr3" }}">
{{ range .Site.Menus.main }}
<li class="list f5 f4-ns fw4 dib {{ compare.Conditional (compare.Eq $.Site.Language.LanguageDirection "rtl") "pl3" "pr3" }}">
<a class="hover-white white-90 no-underline" href="{{ .URL }}" title="{{ lang.Translate "pageTitle" . }}">
{{ .Name }}
</a>
</li>
{{ end }}
<li class="list f5 f4-ns fw4 dib {{ cond (eq $.Site.Language.LanguageDirection "rtl") "pl3" "pr3" }}">
<a class="hover-white no-underline white-90" href="/tags/Gallery" title="Galleries">Galleries</a>
</li>
<li class="list f5 f4-ns fw4 dib {{ cond (eq $.Site.Language.LanguageDirection "rtl") "pl3" "pr3" }}">
<a class="hover-white no-underline white-90" href="https://www.bonfire.com/new-beginnings-community-operations/" target="_blank" rel="noreferrer noopener" title="Fundraising">Fundraising</a>
</li>
</ul>
{{ end }}
{{ partials.IncludeCached "social/follow.html" . }}
</div>
</div>
</nav>