-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
85 lines (82 loc) · 2.6 KB
/
Copy pathhugo.toml
File metadata and controls
85 lines (82 loc) · 2.6 KB
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
baseURL = 'https://federico.travaini.xyz'
languageCode = 'en-us'
title = 'Federico Travaini | ftrava'
theme = 'gokarna'
disableKinds = ['taxonomy', 'term']
[params]
footer = "Federico Travaini (ftrava)"
description = "Mechanical engineer, automation enthusiast, self-hosting geek, and podcaster since 2010."
avatarURL = "/images/avatar_pixelated.png"
AvatarAltText = "Federico Travaini avatar"
avatarSize = "size-m"
customHeadHTML = """
<style>
.social-icons .social-icons-list {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
}
.social-icons-list .social-icon {
width: auto;
height: auto;
margin: 0;
}
.social-icons-list .social-icon a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 10px;
transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.social-icons-list .social-icon a:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}
.social-icons-list .social-icon img {
width: 18px;
height: 18px;
}
.social-icons-list .social-icon a[href^='mailto:'] {
color: #ea4335;
background-color: rgba(234, 67, 53, 0.12);
}
.social-icons-list .social-icon a[href*='pompetravaini.com'] {
color: #ff7a00;
background-color: rgba(255, 122, 0, 0.14);
}
.social-icons-list .social-icon a[href*='linkedin.com'] {
color: #0a66c2;
background-color: rgba(10, 102, 194, 0.14);
}
.social-icons-list .social-icon a[href*='x.com'] {
color: #ffffff;
background-color: rgba(255, 255, 255, 0.12);
}
.social-icons-list .social-icon a[href*='itunes.apple.com'] {
color: #b150e2;
background-color: rgba(177, 80, 226, 0.14);
}
</style>
"""
socialIcons = [
{name = "contact-email", url = "mailto:federico@travaini.xyz"},
{name = "contact-company", url = "https://pompetravaini.com"},
{name = "contact-podcast", url = "http://itunes.apple.com/it/podcast/easyapple/id523499126"},
{name = "contact-linkedin", url = "https://www.linkedin.com/in/federico-travaini/"},
{name = "contact-x", url = "https://x.com/ftrava"}
]
[menu]
[[menu.main]]
name = "Home"
pre = "<span data-feather='home'></span>"
url = "/"
weight = 1
[markup]
[markup.tableOfContents]
startLevel = 1
endLevel = 3
ordered = false