-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
57 lines (41 loc) · 1.91 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://lordgordon.com"
title = "Nicholas Fiorentini (LordGordon) Website"
description = "My personal website"
author = "Nicholas Fiorentini"
# https://www.getzola.org/themes/zallery/
theme = "zallery"
# 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_feeds = true
taxonomies = [
{name = "tags", rss = 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
[extra]
menu = [
{url = "https://github.com/lordgordon", name = "GitHub"},
]
author_url = "https://lordgordon.com"
theme_color = "#313131" # color for browser
cover_image = "img/cover.webp" # cover image on main gallery pages for opengraph and twitter embeds
hide_copyright = false # set to true to hide the copyright at the bottom of the page
hide_poweredby = false # set to true to hide the poweredby at the bottom of the page
# gallery settings
thumbnail_size = 400 # May need to adjust the media queries in _gallery.scss
thumbnail_format = "webp" # auto, jpg, png, webp
thumbnail_quality = 80 # value in percentage, only for webp and jpg
# img shortcode settings
covert_images = true # set to true to convert images to to the format in the image_format setting
create_mobile_images = true # set to true to create mobile friendly versions of the image
image_format = "webp" # auto, jpg, png, webp
image_quality = 90 # value in percentage, only for webp and jpg
# https://modelviewer.dev/
modelviewer = false # set to false to disable loading modelviewer javascript
# https://github.com/francoischalifour/medium-zoom
jszoom = true # set to false to disable javascript based image zoom (will fallback to link to the full image with a button)