-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
57 lines (43 loc) · 1.37 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
# The URL the site will be built for
base_url = "https://sahil-shubham.in"
title = "Sahil Shubham"
default_language = "en"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
theme = "sam"
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
[link_checker]
internal_level = "warn"
taxonomies = [{ name = "tags", rss = true }]
# To generate rss feed
generate_feed = true
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
[markdown]
highlight_code = true
highlight_theme = "charcoal"
[extra]
# Put all your custom variables here
show_word_count = true
show_reading_time = true
date_format = "%A %e %b, %Y"
home = "home"
sam_menu = [
{ text = "about", link = "/about" },
{ text = "posts", link = "/posts" },
{ text = "resume", link = "/resume.pdf" },
]
sam_bottom_menu = true
[extra.favicon]
favicon_16x16 = "/favicons/favicon-16x16.png"
favicon_32x32 = "/favicons/favicon-32x32.png"
apple_touch_icon = "/favicons/apple-touch-icon.png"
webmanifest = "/favicons/site.webmanifest"
[extra.youtube]
video_id = "GFBZgsHmPo4"
[extra.social]
mail = "mailto:[email protected]"
twitter = "https://twitter.com/sahil_shubham_"
github = "https://github.com/sahil-shubham"
rss = "https://sahil-shubham.in/atom.xml"