Various color and layout tweaks
Some checks failed
Deploy to Netlify / Deploy Hugo site to Netlify (push) Failing after 2s

This commit is contained in:
Alan Youngblood 2024-01-22 09:58:22 -05:00
parent a0a8a791ea
commit 6846a062c3
8 changed files with 4380 additions and 11 deletions

View File

@ -0,0 +1,6 @@
.f2 {
color: black;
}
.f3 {
color: black;
}

26
config.toml Normal file
View File

@ -0,0 +1,26 @@
title = "New Beginnings Community Operations"
baseURL = "https://newbeginningscommunityoperations"
languageCode = "en-us"
theme = ["github.com/theNewDynamic/gohugo-theme-ananke"]
resourceDir = "../resources"
DefaultContentLanguage = "en"
SectionPagesMenu = "main"
Paginate = 10 # this is set low for demonstrating with dummy content. Set to a higher number
googleAnalytics = ""
enableRobotsTXT = true
[languages]
[languages.en]
title = "Ananke"
weight = 1
contentDir = "content/en"
[sitemap]
changefreq = "monthly"
priority = 0.5
filename = "sitemap.xml"
[params]
description = "We are people who care about our community and have the courage and audacity to believe that we can have a positive impact on it"
custom_css = ["custom-site.css"]

View File

@ -1,7 +1,7 @@
--- ---
title: "About" title: "About"
description: "New Beginnings Community Operations is a nonprofit 501(c)(3) organization at risk youths and seniors in the Raleigh, NC area." description: "New Beginnings Community Operations is a nonprofit 501(c)(3) organization at risk youths and seniors in the Raleigh, NC area."
featured_image: "/images/Raleigh.jpg" featured_image: "/images/Raleigh.jpeg"
menu: menu:
main: main:
weight: 1 weight: 1

View File

@ -2,15 +2,20 @@ baseURL = 'https://newbeginningscommunityoperations.org/'
languageCode = 'en-us' languageCode = 'en-us'
title = 'New Beginnings Community Operations' title = 'New Beginnings Community Operations'
theme = 'ananke' theme = 'ananke'
enableEmoji = true
[params] [params]
text_color = "" body_classes = "avenir black bg-light-yellow"
text_color = "black"
author = "" author = ""
favicon = "" favicon = ""
site_logo = "" site_logo = ""
description = "We are a nonprofit 501(c)(3) organization serving at risk youths and elders in the Raleigh area." description = "We are a nonprofit 501(c)(3) organization serving at risk youths and elders in the Raleigh area."
background_color_class = "bg-navy" background_color_class = "bg-gold"
recent_posts_number = 3
[[params.ananke_socials]] [[params.ananke_socials]]
name = "facebook" name = "facebook"
url = "https://www.facebook.com/" url = "https://www.facebook.com/groups/641256017286732"
label = "Facebook"
color = "#3b5998"

View File

@ -2,10 +2,10 @@
other = "More" other = "More"
[allTitle] [allTitle]
other = "All {{.Title }}" other = "All Posts"
[recentTitle] [recentTitle]
other = "Recent {{.Title }}" other = "Recent Volunteer Activity"
[readMore] [readMore]
other = "read more" other = "read more"

View File

@ -6,9 +6,9 @@
{{ partial "site-navigation.html" . }} {{ partial "site-navigation.html" . }}
<div class="tc-l pv6 ph3 ph4-ns"> <div class="tc-l pv6 ph3 ph4-ns">
{{ if not .Params.omit_header_text }} {{ if not .Params.omit_header_text }}
<div class="f2 f1-l fw2 white-90 mb0 lh-title">{{ .Title | default .Site.Title }}</div> <div class="f2 f1-l fw2 black mb0 lh-title">{{ .Title | default .Site.Title }}</div>
{{ with .Params.description }} {{ with .Params.description }}
<div class="fw1 f5 f3-l white-80 measure-wide-l center lh-copy mt3 mb4"> <div class="fw1 f5 f3-l black measure-wide-l center lh-copy mt3 mb4">
{{ . }} {{ . }}
</div> </div>
{{ end }} {{ end }}

4332
themes/ananke/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -13,11 +13,11 @@
"tachyons": "project" "tachyons": "project"
} }
}, },
"dependencies": {},
"description": "Theme Ananke", "description": "Theme Ananke",
"devDependencies": { "devDependencies": {
"auto-changelog": "^1.16.1", "auto-changelog": "^1.16.1",
"cssnano": "^3.10.0", "cssnano": "^3.10.0",
"hugo-extended": "^0.121.2",
"postcss-cli": "^7.1.0", "postcss-cli": "^7.1.0",
"postcss-cssnext": "^2.10.0", "postcss-cssnext": "^2.10.0",
"tachyons": "^4.9.1" "tachyons": "^4.9.1"
@ -35,7 +35,7 @@
"url": "git+https://github.com/theNewDynamic/gohugo-theme-ananke.git" "url": "git+https://github.com/theNewDynamic/gohugo-theme-ananke.git"
}, },
"scripts": { "scripts": {
"version": "auto-changelog -p --template keepachangelog --commit-limit 0 \u0026\u0026 git add CHANGELOG.md", "version": "auto-changelog -p --template keepachangelog --commit-limit 0 && git add CHANGELOG.md",
"deploy": " cd exampleSite; hugo;" "deploy": " cd exampleSite; hugo;"
}, },
"version": "2.7.0" "version": "2.7.0"