-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.toml
67 lines (51 loc) · 2.27 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
# The URL the site will be built for
base_url = "https://weekly.databend.rs"
title = "Databend Weekly"
theme = "terminimal"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# The filename to use for the feed. Used as the template filename, too.
# Defaults to "atom.xml", which has a built-in template that renders an Atom 1.0 feed.
# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.
feed_filename = "rss.xml"
generate_feed = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
[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 = "boron"
# When set to "true", emoji aliases translated to their corresponding
# Unicode emoji equivalent in the rendered Markdown files. (e.g.: :smile: => 😄)
render_emoji = true
[extra]
# Put all your custom variables here
# The logo text - defaults to "Terminimal theme"
logo_text = "Databend Weekly"
# Author name: when specified, modifies the default
# copyright text. Apart from author, it will
# contain current year and a link to the theme.
author = "Datafuse Labs"
# Use full Hack character set, not just a subset.
# Switch this to true if you need full unicode support.
# Defaults to false.
use_full_hack_font = true
# menu is enabled by adding menu_items (optional)
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 = "weekly", url = "$BASE_URL"},
{name = "archive", url = "$BASE_URL/archive"},
# set newtab to true to make the link open in new tab
{name = "github", url = "https://github.com/datafuselabs/databend", newtab = true},
{name = "docs", url = "https://databend.rs/", newtab = true},
{name = "rss", url = "$BASE_URL/rss.xml", newtab = false},
]
# Whether to show links to earlier and later posts
# on each post page (defaults to true).
enable_post_view_navigation = true
# The text shown at the bottom of a post,
# before earlier/later post links.
# Defaults to "Thanks for reading! Read other posts?"
post_view_navigation_prompt = "Thanks for reading! Read other posts?"