-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
100 lines (88 loc) · 3.02 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
baseURL = "https://fabrizio.foo"
title = "Fabrizio Ottati"
theme = "gokarna"
languageCode = "en"
defaultContentLanguage = "en"
enableEmoji = true
enableRobotsTXT = true
pluralizelisttitles = false
# Choose one of emacs, trac or perldoc
pygmentsStyle = "monokai"
[params]
footer = "Fabrizio Ottati"
description = "猿も木から落ちる"
avatarURL = "/images/cat-icon.png"
AvatarAltText = "fabrizio"
avatarSize = "size-l"
customHeadHTML = """
<!-- KaTeX -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-Xi8rHCmBmhbuyyhbI88391ZKP2dmfnOl4rT9ZfRI7mLTdk1wblIUnrIq35nqwEvC" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js" integrity="sha384-X/XCfMm41VSsqRNQgDerQczD69XqmjOOOwYQvr/uuC+j4OPoNhVgjdGFwhvN02Ja" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
renderMathInElement(document.body, {
// customised options
// • auto-render specific keys, e.g.:
delimiters: [
{left: '$$', right: '$$', display: true},
{left: '$', right: '$', display: false},
],
// • rendering keys, e.g.:
throwOnError : false
});
});
</script>
"""
# socialIcons = [
# {name = "linkedin", url = "https://www.linkedin.com/in/fabrizio-ottati-330704141/"},
# {name = "github", url = "https://github.com/fabrizio-ottati"},
# {name = "email", url = "mailto:[email protected]"},
# {name = "twitter", url = "https://twitter.com/OttatiFabrizio"}
# ]
[menu]
[[menu.main]]
name = "Home"
pre = "<span data-feather='home'></span>"
url = "/"
weight = 1
[[menu.main]]
name = "Blog"
pre = "<span data-feather='code'></span>"
url = "/blog/"
weight = 2
# [[menu.main]]
# name = "Updates"
# pre = "<span data-feather='message-circle'></span>"
# url = "/updates/"
# weight = 3
[[menu.main]]
name = "About"
pre = "<span data-feather='user'></span>"
url = "/about/"
weight = 4
[[menu.main]]
identifier = "github"
pre = "<span data-feather='github'></span>"
url = "https://github.com/fabrizio-ottati"
weight = 5
[[menu.main]]
identifier = "email"
pre = "<span data-feather='mail'></span>"
url = "mailto:[email protected]"
weight = 6
[[menu.main]]
identifier = "linkedin"
pre = "<span data-feather='linkedin'></span>"
url = "https://www.linkedin.com/in/fabrizio-ottati-330704141/"
weight = 7
[[menu.main]]
identifier = "twitter"
pre = "<span data-feather='twitter'></span>"
url = "https://twitter.com/OttatiFabrizio"
weight = 8
[markup]
[markup.tableOfContents]
startLevel = 1
endLevel = 4
ordered = false