-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
124 lines (106 loc) · 2.97 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
baseURL = "https://scorpiosec.com/"
defaultContentLanguage = "en"
# Automatically generate robots.txt
enableRobotsTXT = true
pygmentsStyle = "onedark"
languageCode = "en"
theme = "gokarna"
title = "Scorpiosec"
[menu]
[[menu.main]]
# Display name
name = "Posts"
pre = "<span data-feather='book'></span>"
# Relative URL slug (appended to baseURL)
url = "/posts/"
# Lower weights are listed first in the menu (leftmost); higher weights are
# listed last in the menu (rightmost)
weight = 1
[[menu.main]]
name = "Projects"
pre = "<span data-feather='code'></span>"
url = "/projects/"
weight = 2
[[menu.main]]
name = "Tags"
pre = "<span data-feather='tag'></span>"
url = "/tags/"
weight = 3
[[menu.main]]
name = "Categories"
pre = "<span data-feather='folder'></span>"
url = "/categories/"
weight = 4
#[[menu.main]]
# Unique identifiers are required for menu entries without a name property,
# or for menu entries which re-use a name
#identifier = "github"
# Absolute URL to external resource
#url = "https://github.com"
#weight = 5
# Surround the menu entry (or name) with HTML content, such as Feather
# icons: https://feathericons.com
#pre = "<span data-feather='github'></span>"
#post = ""
[params]
avatarURL = "/redscorpio.jpg"
avatarSize = "size-m"
displayReadingTime = true
togglePreviousAndNextButtons = true
footer = "K-Scorpio"
showPostsOnHomePage = "recent"
numberPostsOnHomePage = 4
#description = "Trying to get better 1% at a time"
showBackToTopButton = true
accentColor = "#FF4D4D"
fontSize = "17.5px"
socialIcons = [
{name = "x", url = "https://x.com/_KScorpio"},
{name = "github", url = "https://github.com/K-Scorpio"},
{name = "email", url = "mailto: kscorpiosec@gmail.com"},
]
[markup]
[markup.tableOfContents]
startLevel = 1
endLevel = 4
ordered = false
[taxonomies]
category = 'categories'
tag = 'tags'
[minify]
minifyOutput = true
[languages]
[languages.en]
languageName = "English"
weight = 1
contentDir = "content/en"
[languages.fr]
languageName = "Français"
weight = 2
contentDir = "content/fr"
[languages.fr.menu]
[[languages.fr.menu.main]]
[[languages.fr.menu.main]]
identifier = "posts"
name = "Postes"
url = "/fr/posts/"
pre = "<span data-feather='book'></span>"
weight = 1
[[languages.fr.menu.main]]
identifier = "projects"
name = "Projets"
url = "/fr/projects/"
pre = "<span data-feather='code'></span>"
weight = 2
[[languages.fr.menu.main]]
identifier = "tags"
name = "Tags"
url = "/fr/tags/"
pre = "<span data-feather='tag'></span>"
weight = 3
[[languages.fr.menu.main]]
identifier = "categories"
name = "Catégories"
url = "/fr/categories/"
pre = "<span data-feather='folder'></span>"
weight = 4