-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
82 lines (70 loc) · 2.45 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
# The URL the site will be built for
base_url = "https://salif.github.io/zola-themes-collection/"
default_language = "en"
theme = "linkita-theme"
build_search_index = false
compile_sass = false
generate_feeds = false
generate_robots_txt = false
author = "ztc"
title = "Zola Themes"
description = "A curated directory of themes for the Zola static site generator"
[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
external_links_target_blank = true
lazy_async_image = true
[search]
# Whether to include the title of the page/section in the index
include_title = true
# Whether to include the description of the page/section in the index
include_description = true
# Whether to include the RFC3339 datetime of the page in the search index
include_date = false
# Whether to include the path of the page/section in the index (the permalink is always included)
include_path = false
# Whether to include the rendered content of the page/section in the index
include_content = true
# At which code point to truncate the content to. Useful if you have a lot of pages and the index would
# become too big to load on the site. Defaults to not being set.
# truncate_content_length = 100
# Wether to produce the search index as a javascript file or as a JSON file
# Accepted values:
# - "elasticlunr_javascript", "elasticlunr_json"
# - "fuse_javascript", "fuse_json"
index_format = "elasticlunr_javascript"
[extra]
math = false
mermaid = false
comment = false
header_menu_name = "main"
disable_default_favicon = true
header_buttons = ["site_title", "theme_button"]
[extra.style]
# The custom background color
bg_color = "#f6f8fa"
# The custom background color in dark mode
bg_dark_color = "#1d212c"
# Enable header blur
header_blur = false
# The custom header color, only available when `header_blur` is false
header_color = "#f6f8fa"
# The custom header color in dark mode, only available when `header_blur` is false
header_dark_color = "#1d212c"
[extra.menus]
main = [
{ url = "https://github.com/salif/zola-themes-collection", name = "Repository" },
]
[extra.profiles.ztc.open_graph]
image = "screenshot.png"
image_alt = "A screenshot of this website."
[extra.footer]
since = 2024
copyright = "© $YEAR"
[extra.languages.en]
locale = "en_US"
[extra.goatcounter]
endpoint = "https://sgi.goatcounter.com/count"
src = "//gc.zgo.at/count.js"
noscript_prefix = "/zola-themes-collection"