-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.toml
59 lines (47 loc) · 1.64 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 = "https://accio-demo.netlify.app"
title = "Accio"
description = "A Spell Bound theme for Zola SSG"
# 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
generate_feed=true
taxonomies = [
{name = "categories", rss = 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
render_emoji = true
highlight_theme="material-dark"
# Whether external links are to be opened in a new tab
# If this is true, a `rel="noopener"` will always automatically be added for security reasons
external_links_target_blank = true
# Whether to set rel="nofollow" for all external links
external_links_no_follow = true
# Whether to set rel="noreferrer" for all external links
external_links_no_referrer = true
[extra]
# Put all your custom variables here
author= "Rajiv Harlalka"
blog_menu = [
{url = "$BASE_URL/about", name = "About Me"},
{url = "$BASE_URL/projects", name = "Projects"},
{url = "$BASE_URL/categories", name = "Categories"},
{url = "$BASE_URL/Resume.pdf", name = "Resume"},
]
github = "https://github.com/rajivharlalka"
twitter = "https://twitter.com/rajivharlalka09"
[extra.utterance]
repo = "rajivharlalka/accio"
theme = "photon-dark"
# [collections]
# [collections.all]
# [collections.all.posts]
# template = "index.html"
# sort_by = "date"
# order = "desc"
# paginate_by = 5
# permalink = "/posts/:year/:month/:day/:slug/"