-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
192 lines (160 loc) · 4.65 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
baseURL = "https://ceso.github.io/"
ignoreFiles = ["content/photos"]
DefaultContentLanguage = "en"
theme = "hello-friend-ng"
rssLimit = 11 # Maximum number of items in the RSS feed.
archetypeDir = "archetypes"
contentDir = "content"
dataDir = "data"
layoutDir = "layouts"
publishDir = "ceso.github.io"
buildDrafts = false
buildFuture = true
buildExpored = false
canonifyURLs = true
[permalinks]
posts = "/posts/:year/:month/:title/"
# Disable for uncompatibility
#enableRobotsTXT = false
#enableGitInfo = true
#enableMissingTranslationPlaceholders = false
#disableRSS = false
#enableEmoji = false
#disableSitemap = false
#disable404 = false
#disableHugoGeneratorInject = false
[blackfriday]
hrefTargetBlank = true
[author]
name = "ceso"
[taxonomies]
tag = "tags"
# category = "categories"
[params]
dateform = "Jan 2, 2006"
dateformShort = "Jan 2"
dateformNum = "2006-01-02"
dateformNumTime = "2006-01-02 15:04 -0700"
# Metadata mostly used in document's head
description = "Security CTFs, Tutorials and Blogs"
keywords = "CTF, Security, HTB, Blog, Infosec"
realName = "Leandro Lemos"
# Prefix of link to the git commit detail page. GitInfo must be enabled.
gitUrl = "https://github.com/ceso/ceso-blog/commit/"
# Set disableReadOtherPosts to true in order to hide the links to other posts.
#disableReadOtherPosts = false
# Integrate Javascript files or stylesheets by adding the url to the external assets or by
# linking local files with their path relative to the static folder, e.g. "css/styles.css"
customCSS = ["/css/scroll.css"]
customJS = ["/js/scroll.js"]
# Toggle this option need to rebuild SCSS, requires extended version of Hugo
justifyContent = true # Set "text-align: justify" to .content.
# Directory name of your blog content (default is `content/posts`)
contentTypeName = "posts"
# Default theme "light" or "dark"
defaultTheme = "dark"
themeColor = "#252627"
# Colors for favicons
[params.favicon.color]
mask = "#252627"
msapplication = "#252627"
theme = "#252627"
[params.logo]
logoText = "ceso@hogsmeade$ "
logoHomeLink = "/"
# Set true to remove the logo cursor entirely.
# logoCursorDisabled = false
# Set to a valid CSS color to change the cursor in the logo.
logoCursorColor = "#808080"
# Set to a valid CSS time value to change the animation duration, "0s" to disable.
# logoCursorAnimate = "2s"
# Social icons
[[params.social]]
name = "twitter"
url = "https://twitter.com/0xc350"
[[params.social]]
name = "github"
url = "https://github.com/ceso"
[[params.social]]
name = "linkedin"
url = "https://www.linkedin.com/in/lemosleandro"
[[params.social]]
name = "twitch"
url = "https://www.twitch.tv/0xc350"
[[params.social]]
name = "youtube"
url = "https://youtube.com/c/LeandroLemos"
[frontmatter]
date = ["date", "publishDate", "lastmod"]
lastmod = [":git", "lastmod", "date", "publishDate"]
publishDate = ["publishDate", "date"]
expiryDate = ["expiryDate"]
[languages]
[languages.en]
title = "Ceso Adventures"
weight = 1
[languages.es]
title = "Las Aventuras de Ceso"
weight = 2
[menu]
[[menu.main]]
identifier = "resources"
name = "Resources"
url = "posts/2020/12/hacking-resources/"
[[menu.main]]
identifier = "cheatsheet"
name = "Cheatsheet"
url = "posts/2020/04/hacking-cheatsheet/"
[[menu.main]]
identifier = "videos"
name = "Videos"
url = "posts/2021/03/my-videos/"
[[menu.main]]
identifier = "photos"
name = "Photos"
url = "https://ceso.github.io/photos/"
[[menu.main]]
identifier = "about"
name = "About"
url = "about/"
[[menu.main]]
identifier = "posts"
name = "Posts"
url = "posts/"
[[menu.main]]
identifier = "tags"
name = "Tags"
url = "tags/"
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark]
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true
[markup.goldmark.parser]
attribute = true
autoHeadingID = true
autoHeadingIDType = "github"
[markup.goldmark.renderer]
hardWraps = false
unsafe = false
xHTML = false
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "monokai"
tabWidth = 4
[markup.tableOfContents]
endLevel = 2
ordered = false
startLevel = 2