-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhugo.toml
More file actions
136 lines (129 loc) · 5.08 KB
/
hugo.toml
File metadata and controls
136 lines (129 loc) · 5.08 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
baseURL = 'https://oggcamp.github.io/'
languageCode = 'en-gb'
title = 'OggCamp 2026'
# This defines how dates are formatted
defaultContentLanguage = "en"
# Enable emojis globally
enableEmoji = true
# Load Theme Module
[module]
[[module.imports]]
path = "github.com/hugo-sid/hugo-blog-awesome"
# Main Menu (navbar)
[menu]
[[menu.main]]
# The page reference (pageRef) is useful for menu highlighting
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
pageRef="/"
name = 'Home'
url = '/'
weight = 10
[[menu.main]]
pageRef="posts"
name = 'Posts'
url = '/posts/'
weight = 20
[[menu.main]]
name = 'Schedule'
url = 'https://talks.oggcamp.org/oggcamp-2026/schedule/'
weight = 25
[[menu.main]]
pageRef="about"
name = 'About'
url = '/about/'
weight = 30
[[menu.main]]
pageRef="history"
name = 'History'
url = '/history/'
weight = 40
[[menu.main]]
pageRef="sponsors"
name = 'Sponsors'
url = '/sponsors/'
weight = 50
[[menu.main]]
pageRef="guidelines"
name = 'Talk Guidelines'
url = '/guidelines/'
weight = 60
[[menu.main]]
pageRef="code-of-conduct"
name = 'Code of Conduct'
url = '/code-of-conduct/'
weight = 70
[[menu.main]]
pageRef="venue"
name = 'Venue'
url = '/venue/'
weight = 80
[[menu.main]]
name = 'Tickets'
url = 'https://tickets.oggcamp.org/'
weight = 90
# Global Site Parameters
[params]
sitename = "OggCamp 2026"
images = ['img/og-default.png'] # Default social media preview image
defaultColor = "auto" # set color mode: dark, light, auto
# Setting it to 'auto' applies the color scheme based on the visitor's device color preference.If you don't specify anything, ignore this parameter, or leave it blank,
# the default value is set to 'auto'.
# You can take a look at layouts/index.html for more information.
description = "OggCamp is a free software & free culture unconference."
mainSections = ['posts']
toc = false # set to false to disable table of contents 'globally'
tocOpen = false # set to true to open table of contents by default
goToTop = true # set to false to disable 'go to top' button
dateFormat = "" # date format used to show dates on various pages. If nothing is specified, then "2 Jan 2006" format is used.
# See https://gohugo.io/functions/time/format/ for available date formats.
rssFeedDescription = "full" # available options: 1) summary 2) full
# summary - includes a short summary of the blog post in the RSS feed. Generated using Hugo .Summary .
# full - includes full blog post in the RSS feed. Generated using Hugo .Content .
# By default (or if nothing is specified), summary is used.
# Author Parameters (Defines detail on homepage)
[params.author]
avatar = "OggCamp-26-Light-400px.png"
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
intro = "OggCamp 2026 - April 25th - 26th, 2026 - Manchester, UK"
name = "OggCamp"
description = "OggCamp is an unconference celebrating Free Culture, Free and Open Source Software, hardware hacking, digital rights, and all manner of collaborative cultural activities and is committed to creating a conference that is as inclusive as possible. If you've got a story to tell, no matter your background or current status, whether it's your first talk or you've loads of experience, as long as the talk is connected (somehow) to our theme then we want to know about it. Curious what happens at an OggCamp? Check the [about page](/about/), or look at our social links below. Tickets for OggCamp 2026 are now available. Get them at [tickets.oggcamp.org](https://tickets.oggcamp.org)!"
# Allow to override webmanifest options
[params.webmanifest]
name = "sitename" # will use "params.sitename" or "title" by default
short_name = "sitename" # same as name
start_url = "/" # will use homepage url by default
theme_color = "#434648" # default is "#434648" (base color of text). Also will override html `<meta name="theme-color" />`
background_color = "#fff" # by default depend on "params.defaultColor" for "light" or "auto" will be set to "#fff" for dark will be "#131418" (color of dark mode background)
display = "standalone"
# Social Media Icons
[[params.socialIcons]]
name = "github"
url = "https://github.com/oggcamp"
[[params.socialIcons]]
name = "mastodon"
url = "https://mastodon.social/@oggcamp"
[[params.socialIcons]]
name = "bluesky"
url = "https://bsky.app/profile/oggcamp.org"
[[params.socialIcons]]
name = "x"
url = "https://twitter.com/oggcamp"
[[params.socialIcons]]
name = "telegram"
url = "https://t.me/joinchat/AAAAAAsF-xo4ol9jAjNW8A"
[[params.socialIcons]]
name = "matrix"
url = "https://matrix.to/#/#oggcamp:matrix.org"
[[params.socialIcons]]
name = "discord"
url = "https://discord.gg/4DcDk6Y"
[[params.socialIcons]]
name = "irc"
url = "irc://irc.libera.chat/oggcamp"
[[params.socialIcons]]
name = "youtube"
url = "https://www.youtube.com/channel/UCs87vY7Zxlw8y2enWr1glqg"
# Cache location required for GH Pages (https://gohugo.io/host-and-deploy/host-on-github-pages/)
[caches]
[caches.images]
dir = ':cacheDir/images'