-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
59 lines (44 loc) · 1.49 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
# The URL the site will be built for
base_url = "//goodylili.github.io/definomica"
# The site title and description; used in feeds by default.
title = "Definomica"
description = "Learn the economics and finance concepts that go into building your favourite crypto protocols"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
taxonomies = [{ name = "tags" }]
default_language = "en"
[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
highlight_theme = "OneHalfLight"
[extra]
# control dark mode: auto | dark | toggle
mode = "toggle"
# interal CDN resource
useCDN = false
favicon = "/icon/favicon.png"
copyright = "definomica 👻"
[extra.translations]
languages = [{ name = "en", url = "/" }]
[[extra.translations.en]]
show_more = "Read more ⟶"
previous_page = "← Previous"
next_page = "Next →"
posted_on = "on "
posted_by = "Published by"
read_time = "minute read"
all_tags = "All tags"
menus = [
{ name = "latest", url = "/", weight = 2 },
{ name = "all", url = "/posts", weight = 2 },
{ name = "categories", url = "/tags", weight = 4 },
{ name = "about", url = "/info", weight = 3 },
]
# config social icon info in the footer
[[extra.social]]
icon = "GitHub"
name = "GitHub"
url = "https://github.com/goodylili/definomica"