-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
37 lines (27 loc) · 1.02 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
# The URL the site will be built for
base_url = "https://hexyoungs.com"
generate_feed = true
feed_filename = "rss.xml"
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
theme = "terminimal"
# Sass compilation is required
compile_sass = true
[markdown]
highlight_code = true
highlight_theme = "base16-ocean-dark"
[extra]
logo_text = "Hexyoungs"
menu_items = [
# each of these is optional, name and url are required
# $BASE_URL is going to be substituted by base_url from configuration
{name = "main", url = "$BASE_URL"},
{name = "blog", url = "$BASE_URL/blog"},
{name = "projects", url = "$BASE_URL/projects"},
# set newtab to true to make the link open in new tab
{name = "github", url = "https://github.com/chux0519", newtab = true},
]
copyright_html = "© Copyright 2021 by <a href=\"https://hexyoungs.com\">hexyoungs</a>."
background_color = "hexyoungs"
accent_color = "hexyoungs"
post_view_navigation_prompt = "感谢阅读!查看更多?"