-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
100 lines (83 loc) · 2.41 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# ----------------------------------------------------------------------------
# FILE: config.toml
# DESCRIPTION: Hugo configuration file
# AUTHOR: Zoltán Király <[email protected]>
# ----------------------------------------------------------------------------
title = "Spring Mountain Benefit Corp."
baseURL = "https://smbcjm.org/"
languageCode = "en-US"
theme = "smbcjm"
# Site params
[params]
logo = "logo.png"
author = "Megan Saul"
images = ["logo-social.jpg"]
description = "Spring Mountain Benefit Corp. is a nonprofit focused on community improvement and neighborhood development."
copyright = "Copyright {currentYear} Spring Mountain Benefit Corp. (SMBC)"
# Intro
[params.intro]
enable = true
heading = "About us"
description = "Spring Mountain Benefit Corp. (501c3) is a nonprofit corporation organized and operated exclusively for charitable purposes. The purpose of this non-profit is to provide community development assistance to the Spring Mountain neighborhood."
button = true
buttonText = "Learn More"
buttonURL = "about"
# Menus
[[menu.nav]]
name = "Home"
url = "/"
weight = 1
[[menu.nav]]
name = "About us"
url = "/about"
weight = 2
[[menu.nav]]
name = "Blog"
url = "/posts"
weight = 3
[[menu.nav]]
name = "Gallery"
url = "/gallery"
weight = 4
[[menu.nav]]
name = "Donate"
url = "/donate"
weight = 5
[[menu.nav]]
name = "Contact"
url = "#contact"
weight = 6
# Permalinks
[permalinks]
posts = "posts/:year/:month/:slug"
year = "/posts/:slug/"
month = "/posts/:slug/"
# Taxonomies
[taxonomies]
year = "year"
month = "month"
tag = "tags"
category = "categories"
# Footer
[params.footer]
phone = "+1 876-486-2219"
email = "[email protected]"
# Social
[social]
twitter = "SpringMountNP"
[[params.social]]
icon = "icon-facebook"
title = "Connect with us on Facebook"
url = "https://www.facebook.com/springmountainvilla"
[[params.social]]
icon = "icon-twitter"
title = "Follow us on Twitter"
url = "https://twitter.com/SpringMountNP"
[[params.social]]
icon = "icon-email"
title = "Contact us via email"
url = "mailto:[email protected]?subject=Hello%20There!&body=Hello%20Megan,"
# Security
[security]
[security.exec]
allow = ['^go$', '^npx$', '^postcss$', '^babel$']