-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
79 lines (71 loc) · 2.1 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
baseURL = 'https://kbeamnsidc.github.io'
languageCode = 'en-us'
title = 'Kevin W. Beam'
theme = 'hugo-tufte'
[params]
subtitle = "Software Engineer - National Snow and Ice Data Center (NSIDC)"
copyrightHolder = "Kevin W. Beam"
showPoweredBy = true
hidedate = false
codeBlocksDark = true
github = "https://github.com/kbeamnsidc"
bitbucket = "https://bitbucket.org/kbeamnsidc/"
youtube = "channel/UC8DAko-rktIl_p9i8mwFcIA"
# orcid = "0000-0003-0634-3275"
# google_scholar = "jm5QaHkAAAAJ"
[taxonomies]
category = "categories"
series = "series"
tag = "tags"
# -----------------------------------------------------------------------
# Navigation menu
# -----------------------------------------------------------------------
[[menu.nav]]
name = "Home"
pre = "<i class='fas fa-home la-lg'></i>"
weight = -110
identifier = "home"
url = "/"
[[menu.nav]]
name = "Posts"
pre = "<i class='fas fa-book fa-lg'></i> "
weight = -100
identifier = "posts"
url = "/posts"
[[menu.nav]]
name = "Functional Programming"
pre = "<i class='fas fa-cogs fa-lg'></i> "
weight = -95
identifier = "fp"
url = "/fp"
[[menu.nav]]
name = "Python"
pre = "<i class='fas fa-bookmark fa-lg'></i> "
weight = -90
identifier = "python"
url = "/python"
[[menu.nav]]
name = "About"
pre = "<i class='fas fa-info-circle fa-lg'></i> "
weight = -80
identifier = "about"
url = "/about"
# -----------------------------------------------------------------------
# FOOTER MENU
# If you need to add custom links to you footer: put them here. Be aware that this theme is using fontawesome.
# Please head to https://fontawesome.com/v4.7/icons/ to pick icons
# -----------------------------------------------------------------------
[[menu.footer]]
pre = "<i class='fa fa-bitbucket fa-lg'></i> "
weight = -90
identifier = "custom_link"
url = "https://bitbucket.org/kbeamnsidc"
# Don't change the settings below
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true # make the shortcodes work
[markup.highlight]
noClasses = false
pygmentsUseClasses = true
canonifyurls = true