-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
47 lines (36 loc) · 1.44 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
# The URL the site will be built for
base_url = "https://dmarcoux.com" # This isn't actually used, since `zola serve` overwrites it development, and I call `zola build --base-url ...` in preview/production environments
# The site title and description; used in feeds by default.
title = "Dany Marcoux"
description = """\
Software and DevOps engineer with 12+ years of experience. \
I write about DevOps, web development, Linux, Ruby, and more.\
"""
# 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 = false
# The generated HTML files are minified.
minify_html = false
# The default language; used in feeds.
default_language = "en"
# The default author for pages
author = "Dany Marcoux"
# Generate RSS and Atom feeds
generate_feeds = true
feed_filenames = ["rss.xml", "atom.xml"]
[markdown]
# Whether to do syntax highlighting
# https://www.getzola.org/documentation/content/syntax-highlighting/
highlight_code = true
highlight_theme = "dracula"
[extra]
menu = [
{ name = "Posts", url = "posts", weight = 1 },
# TODO: { name = "About", url = "about", weight = 2 },
]
socials = [
{ name = "GitHub", url = "https://github.com/dmarcoux/", icon = "github" },
{ name = "LinkedIn", url = "https://www.linkedin.com/in/danymarcoux/", icon = "linkedin" },
]
custom_css = []