-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
121 lines (107 loc) · 2.71 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
baseURL = "https://lostluck.dev/"
languageCode = "en-us"
title = "lostluck.dev"
theme = "hugo-coder"
summaryLength = 70
[markup.goldmark.renderer]
unsafe = true
[permalinks]
posts = "/:year/:month/:slug/"
code = "/:filename/"
[params]
author = "Robert Burke"
info = "Distributed <i class=\"fa-brands fa-golang\"></i> Gopher Wrangler"
description = "Robert Burke's personal website"
keywords = "blog,developer,personal"
avatarurl = "images/avatar.jpg"
faviconSVG = "images/glasses.svg"
favicon_32 = "images/favicon-32x32.png"
favicon_16 = "images/favicon-16x16.png"
since = 2020
enableTwemoji = true
colorScheme = "auto"
hidecolorschemetoggle = false
[taxonomies]
category = "categories"
# series = "series"
tag = "tags"
# author = "authors"
# Header
[menu]
[[menu.main]]
identifier = "about"
name = "About"
url = "/about/"
weight = 1
[[menu.main]]
identifier = "posts"
name = "Posts"
url = "/posts/"
weight = 2
[[menu.main]]
identifier = "talks"
name = "Talks"
url = "/talks/"
weight = 3
# [[menu.main]]
# identifier = "codes"
# name = "Code"
# url = "/code/"
# weight = 5
# [[menu.main]]
# identifier = "categories"
# name = "Categories"
# url = "/categories/"
# weight = 23
[[menu.main]]
identifier = "tags"
name = "Tags"
url = "/tags/"
weight = 4
# Social links
[[params.social]]
name = "Bluesky"
icon = "fa-brands fa-bluesky fa-2x"
weight = 1
url = "https://bsky.app/profile/lostluck.dev"
[[params.social]]
name = "Github"
icon = "fa-brands fa-github fa-2x"
weight = 2
url = "https://github.com/lostluck/"
[[params.social]]
name = "Instagram"
icon = "fa-brands fa-instagram fa-2x"
weight = 3
url = "https://www.instagram.com/lostluckdev"
[[params.social]]
name = "LinkedIn"
icon = "fa-brands fa-linkedin fa-2x"
weight = 4
url = "https://www.linkedin.com/in/lostluck"
# [[params.social]]
# name = "Twitch"
# icon = "fa-brands fa-twitch fa-2x"
# url = "https://twitch.tv/lostluckdev"
# weight = 5
[[params.social]]
name = "Twitter"
icon = "fa-brands fa-twitter fa-2x"
# icon = "fa-solid fa-dumpster-fire fa-2x"
weight = 6
url = "https://twitter.com/lostluck/"
[markup]
[markup.highlight]
style = "github-dark"
anchorLineNos = false
codeFences = true
guessSyntax = false
hl_Lines = ''
hl_inline = false
lineAnchors = ''
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
noHl = false
tabWidth = 4