-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
104 lines (87 loc) · 2.73 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
101
102
103
104
# DO NOT REMOVE THIS
theme = "hugo-theme-codex"
# Override these settings with your own
title = "thinkaliker"
languageCode = "en-us"
baseURL = "https://thinkaliker.com/"
copyright = "© {year} thinkaliker"
# Add your Disqus shortname here.
# disqusShortname = ""
# Add your Google Analytics identifier: UA-XXXXXXXX-X
# googleAnalytics = ""
[author]
name = "Adam"
# Optional params
[params]
# Follow the Hugo date/time format reference here:
# https://gohugo.io/functions/format/#gos-layout-string
dateFormat = "2006-01-02"
# Links to your social accounts, comment/uncomment as needed. Icons will be displayed for those specified.
twitter = "https://twitter.com/thinkaliker"
github = "https://github.com/thinkaliker"
# email = "mailto:<your email>"
mastodon = "https://mastodon.social/@thinkaliker"
# facebook = "https://facebook.com/<your handle>"
# gitlab = "https://gitlab.com/<your handle>"
instagram = "https://instagram.com/thinkaliker"
# linkedin = "<link to your profile>"
youtube = "https://www.youtube.com/channel/thinkaliker"
# Titles for your icons (shown as tooltips), and also their display order.
# Currently, these icons are supported:
# "Twitter", "GitHub", "Email", "Mastodon", "Facebook", "GitLab", "Instagram", "LinkedIn", "YouTube"
iconOrder = ["Twitter", "Mastodon", "GitHub", "Instagram", "YouTube"]
# Metadata for Twitter cards, defaults to params.twitter
twitterSite = "@thinkaliker"
twitterAuthor = "@thinkaliker"
# Set to true to display page title in table of contents in blog posts.
showPageTitleInTOC = false
# This disables Hugo's default syntax highlighting in favor
# of prismjs. If you wish to use Hugo's default syntax highlighting
# over prismjs, remove this. You will also need to remove the prismjs
# vendor script in layouts/blog/single.html.
[markup]
[markup.highlight]
anchorLineNos = true
codeFences = true
guessSyntax = false
hl_Lines = ''
lineAnchors = ''
lineNoStart = 1
lineNos = true
lineNumbersInTable = true
noClasses = true
style = 'monokai'
tabWidth = 4
# Set to false to disallow raw HTML in markdown files
[markup.goldmark.renderer]
unsafe = true
[markup.tableOfContents]
endLevel = 3
ordered = false
startLevel = 1
# Controls the navigation
[[menu.main]]
identifier = "home"
name = "01 home"
title = "Home"
url = "/"
[[menu.main]]
identifier = "about"
name = "02 about"
title = "About"
url = "/about"
[[menu.main]]
identifier = "blog"
name = "03 blog"
title = "Blog"
url = "/blog"
[[menu.main]]
identifier = "projects"
name = "04 projects"
title = "Projects"
url = "/projects"
[[menu.main]]
identifier = "links"
name = "05 links"
title = "Links"
url = "/links"