-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
84 lines (73 loc) · 1.84 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
baseURL = "https://jsatk.us/"
title = "Jesse Atkinson"
theme = "hugo-coder"
languageCode = "en-us"
defaultcontentlanguage = "en"
paginate = 20
canonifyurls = true
pygmentsstyle = "bw"
pygmentscodefences = true
pygmentscodefencesguesssyntax = true
[params]
author = "Jesse Atkinson"
info = "Software Engineer"
description = "Jesse Atkinson's personal website"
keywords = "blog,developer,personal"
avatarurl = "images/avatar.jpg"
favicon_32 = "/img/favicon-32x32.png"
favicon_16 = "/img/favicon-16x16.png"
footercontent = "🥃"
hidecredits = true
hidecopyright = false
rtl = false
# Specify light/dark colorscheme
# Supported values:
# "auto" (use preference set by browser)
# "dark" (dark background, light foreground)
# "light" (light background, dark foreground) (default)
colorscheme = "light"
math = true
custom_css = ["css/custom.css"]
# Social links
[[params.social]]
name = "Github"
icon = "fab fa-github fa-2x"
weight = 1
url = "https://github.com/jsatk/"
[[params.social]]
name = "Twitter"
icon = "fab fa-twitter fa-2x"
weight = 2
url = "https://twitter.com/jsatk/"
[[params.social]]
name = "LinkedIn"
icon = "fab fa-linkedin"
weight = 4
url = "https://www.linkedin.com/in/jessesethatkinson/"
[[params.social]]
name = "RSS"
icon = "fas fa-rss fa-2x"
weight = 5
url = "/posts/index.xml"
rel = "alternate"
type = "application/rss+xml"
[[params.social]]
name = ".plan"
icon = "fas fa-file-signature fa-2x"
weight = 6
url = "/dotplan/"
# Menu links
[[menu.main]]
name = "Blog"
weight = 1
url = "/posts/"
[[menu.main]]
name = "About"
weight = 2
url = "/about/"
[[menu.main]]
name = "Et Cetera"
weight = 3
url = "/et-cetera/"
[markup.goldmark.renderer]
unsafe = true