all repos — website-hugo @ 09563b952470742a47f9e15068df74661ab89e3c

My personal blog, built with Hugo!

config.toml (view raw)

 1baseURL = 'https://bi-rabittoh.github.io/'
 2languageCode = 'en-us'
 3title = 'BiRabittoh'
 4theme = 'archie'
 5
 6copyright = "© BiRabittoh"
 7# Code Highlight
 8pygmentsstyle = "monokai"
 9pygmentscodefences = true
10pygmentscodefencesguesssyntax = true
11favicon = "favicon.ico"
12paginate=3 # articles per page
13
14[taxonomies]
15   tag = "tags"
16   #category = "categories"
17
18[params]
19	mode="toggle" # color-mode → light,dark,toggle or auto
20	useCDN=false # don't use CDNs for fonts and icons, instead serve them locally.
21	#subtitle = "My blog and portfolio"
22	#mathjax = true # enable MathJax support
23	#katex = true # enable KaTeX support
24
25# Social Tags
26
27[[params.social]]
28name = "GitHub"
29icon = "github"
30url = "https://github.com/Bi-Rabittoh"
31
32[[params.social]]
33name = "LinkedIn"
34icon = "linkedin"
35url = "https://www.linkedin.com/in/marco-andronaco/"
36
37[[params.social]]
38name = "E-Mail"
39icon = "mail"
40url = "mailto:andronacomarco@gmail.com"
41
42# Main menu Items
43
44[[menu.main]]
45name = "Home"
46url = "/"
47weight = 1
48
49[[menu.main]]
50name = "Articles"
51url = "/posts"
52weight = 2
53
54[[menu.main]]
55name = "Tags"
56url = "/tags"
57weight = 3