-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
39 lines (31 loc) · 934 Bytes
/
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
# The URL the site will be built for
base_url = "https://gavinest.com"
title = "gavinest"
theme = "apollo"
generate_feeds = true
feed_filenames = ["rss.xml"]
compile_sass = true
build_search_index = false
taxonomies = [
{ name = "tags"},
]
[markdown]
highlight_code = true
highlight_theme = "one-dark"
[extra]
toc = false
use_cdn = false
favicon = "/icon/favicon.png"
theme = "toggle" # light, dark, auto, toggle
menu = [
{ name = "/posts", url = "/posts", weight = 1 },
{ name = "/about", url = "/about", weight = 2 },
# { name = "/projects", url = "/projects", weight = 3 },
]
socials = [
{ name = "github", url = "https://github.com/gavinest", icon = "github" },
{ name = "linkedin", url = "https://www.linkedin.com/in/gavinest/", icon = "linkedin" },
{ name = "x", url = "https://x.com/_gavinest", icon = "x-twitter" },
{ name = "rss", url = "/rss.xml", icon = "rss" },
]
custom_css = []