-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.toml
52 lines (39 loc) · 1.63 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
# The URL the site will be built for
base_url = "/"
# The site title and description; used in feeds by default.
title = "boring"
description = "A boring theme for Zola"
# When set to "true", the generated HTML files are minified.
minify_html = true
# When set to "true", a feed is automatically generated.
generate_feed = true
# Whether to automatically compile all Sass files in the sass directory
compile_sass = false
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
[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
# The theme to use for code highlighting.
highlight_theme = "nord"
# When set to "true", emoji aliases translated to their corresponding
# Unicode emoji equivalent in the rendered Markdown files. (e.g.: :smile: => 😄)
render_emoji = true
# Whether smart punctuation is enabled (changing quotes, dashes, dots in their typographic form)
# For example, `...` into `…`, `"quote"` into `“curly”` etc
smart_punctuation = true
[extra]
homepage_title = "Hello, I am a boring guy!"
homepage_subtitle = "I love to sit around all day, doing nothing."
homepage_img_url = "/homepage-img.jpg"
# Refer https://support.google.com/analytics/answer/9539598?hl=en
google_analytics_measurement_id = ""
# Refer https://icons8.com/line-awesome for list of icons
# Both `url` and `icon` should be set for each entry
[[extra.social]]
url = "https://github.com/ssiyad/boring"
icon = "lab la-github"
[[extra.social]]
url = "https://github.com/ssiyad"
icon = "lar la-user-circle"