-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhugo.toml
71 lines (55 loc) · 1.41 KB
/
hugo.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
baseURL = 'https://lucasmazza.website/'
languageCode = 'en-us'
title = 'Lucas Mazza'
theme = 'typo'
[taxonomies]
tag = 'tags'
[params]
# Appearance settings
theme = 'light'
colorPalette = 'default'
hideHeader = false
# Intro on main page, content is markdown
homeIntroTitle = "Hi, I'm Lucas 👋!"
homeIntroContent = """
I'm a software engineer from São Paulo, Brazil that works with **Elixir** and **Ruby**.
Outside work hours, you can find me [cooking](https://lucasmazza.notion.site/lucasmazza/Receitas-79a5a48a2350465dad3c57ba866f95d4), playing video games or spending some time with my [lovely dog](https://instagram.com/corgi.brulee).
"""
# Collection to display on home
homeCollection = 'posts'
# Lists parameters
paginationSize = 5
listSummaries = true
listDateFormat = '2 Jan 2006'
# Breadcrumbs
breadcrumbs = false
# Social icons
[[params.social]]
name = "linkedin"
url = "https://www.linkedin.com/in/lucasmazza/"
[[params.social]]
name = "twitter"
url = "https://twitter.com/lucasmazza"
[[params.social]]
name = "github"
url = "https://github.com/lucasmazza"
[[params.social]]
name = "mastodon"
url = "https://mastodon.social/lucasmazza"
# Main menu pages
[[params.menu]]
name = "home"
url = "/"
[[params.menu]]
name = "posts"
url = "/posts"
[[params.menu]]
name = "talks"
url = "/talks"
[[params.menu]]
name = "about"
url = "/about"
# Syntax highlight on code blocks
[markup]
[markup.highlight]
style = 'tango'