-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
62 lines (56 loc) · 1.87 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
baseURL = 'https://golings.vercel.app/'
languageCode = 'en-us'
title = 'Golings Site'
theme = "blog"
[[params.socialIcons]]
name = "github"
url = "https://github.com/mauricioabreu/golings"
# Enable emojis globally
enableEmoji = true
# set markup.highlight.noClasses=false to enable code highlight
[markup]
[markup.highlight]
codeFences = true
guessSyntax = true
hl_Lines = ''
hl_inline = false
lineAnchors = ''
lineNoStart = 1
lineNumbersInTable = true
noClasses = false
noHl = false
style = 'hrdark'
tabWidth = 4
[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 = 'About'
url = '/'
weight = 10
[[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="installing"
name = 'Installing'
url = '/installing'
weight = 10
[[menu.main]]
pageRef="exercices"
name = 'Exercises'
url = '/exercises/'
weight = 20
[params]
sitename = "Golings"
pageSource = "https://github.com/Grubba27/golings-site"
defaultColor = "light" # set default color mode: dark or light
description = "A project that helps you get started with Go by solving problems, inspired by Rustlings."
exercises = "https://github.com/mauricioabreu/golings/blob/main/exercises"
image = "https://go.dev/doc/gopher/ref.png"
ogimage = "https://go.dev/doc/gopher/ref.png"
[params.author]
avatar = "Go-Logo_Blue.png"
intro = "Learning Go by solving problems"
name = "Made with ❤️ by Mauricio Abreu and Gabriel Grubba"
description = "A project that helps you get started with Go by solving problems, inspired by Rustlings."