diff options
author | Yigit Sever | 2021-04-19 18:23:22 +0300 |
---|---|---|
committer | Yigit Sever | 2021-04-19 18:23:22 +0300 |
commit | 59ea3bd25b1f113168333eccdc9ffc4acd98cfe6 (patch) | |
tree | 4d76d4423f7d47755890aa98cbf0751978ef9180 /config.toml | |
download | gradecoin-site-59ea3bd25b1f113168333eccdc9ffc4acd98cfe6.tar.gz gradecoin-site-59ea3bd25b1f113168333eccdc9ffc4acd98cfe6.tar.bz2 gradecoin-site-59ea3bd25b1f113168333eccdc9ffc4acd98cfe6.zip |
Initial commit
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..070b762 --- /dev/null +++ b/config.toml | |||
@@ -0,0 +1,28 @@ | |||
1 | # The URL the site will be built for | ||
2 | base_url = "https://gradecoin.xyz" | ||
3 | |||
4 | theme = "juice" | ||
5 | |||
6 | title = "Gradecoin" | ||
7 | description = "Mine Your Grades" | ||
8 | |||
9 | # Whether to automatically compile all Sass files in the sass directory | ||
10 | compile_sass = true | ||
11 | |||
12 | # Whether to build a search index to be used later on by a JavaScript library | ||
13 | build_search_index = true | ||
14 | |||
15 | [markdown] | ||
16 | # Whether to do syntax highlighting | ||
17 | # Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola | ||
18 | highlight_code = true | ||
19 | highlight_theme = "subway-moscow" | ||
20 | |||
21 | [extra] | ||
22 | # Put all your custom variables here | ||
23 | juice_logo_name = "Gradecoin" | ||
24 | juice_logo_path = "gradecoin.png" | ||
25 | juice_extra_menu = [ | ||
26 | { title = "why?", link = "https://github.com/zhuowei/nft_ptr#why"} | ||
27 | ] | ||
28 | |||