-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
82 lines (62 loc) · 1.28 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
baseURL = 'https://blog.strikos.name/'
languageCode = 'en-us'
title = 'Andreas Strikos'
theme = "ink-free"
publishDir = "docs"
paginate = 5
# copyright = "© Copyright notice"
[permalinks]
posts = "/:year/:month/:title"
[params]
subtitle = "Software and Infrastructure Engineer"
# Optional 64x64 avatar image.
avatar = "/boy-student-sitting.webp"
featherIconsCDN = false
# Site color - dark/light/auto
mode = "auto"
# Enable a table of contents
toc = false
# Max tags
maxTags = 7
# Define words per minute to approximate reading time
wpm = 250
# Github base url
# github = "https://github.com/astrikos"
# Nav.
[[menu.main]]
name = "Home"
url = "/"
weight = 1
[[menu.main]]
name = "All posts"
url = "/posts"
weight = 2
# [[menu.main]]
# name = "About"
# url = "/about"
# weight = 3
[[menu.main]]
name = "Tags"
url = "/tags"
weight = 4
[[params.social]]
name = "Github"
icon = "github"
url = "https://github.com/astrikos"
[[params.social]]
name = "LinkedIn"
icon = "linkedin"
url = "https://www.linkedin.com/in/astrikos/"
[taxonomies]
tag = "tags"
[markup]
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = true
lineNumbersInTable = true
noClasses = true
style = "github"
tabWidth = 4