-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.toml
36 lines (30 loc) · 832 Bytes
/
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
baseURL = 'https://nelsonic.github.io'
languageCode = 'en-us'
title = 'home'
theme = 'book'
description = 'personal writing'
canonifyurls = true
githubName = 'nelsonic'
linkedinName = 'nelsonic'
[[menu.main]] # here are the buttons on the menu
name = 'Home' # Button will display as 'Home'
weight = 100 # the weight decides the position of the button (higher or lower)
identifier = 'home'
pre = '<br />'
url = '/'
[[menu.main]]
name = 'Contact'
weight = 0
identifier = 'contact' # this button will refer to a markdown file named 'contact' in the content folder
pre = '<br />'
url = '/contact'
[[menu.main]]
name = 'Blog'
identifier = 'blog' # this page will refer to a markdown file named 'blog' in the content folder
pre = '<br />'
url = '/post'
weight = 40
[sitemap]
ChangeFreq = ''
Filename = 'sitemap.xml'
Priority = '-1'