penguincoder-org/config.toml

27 lines
771 B
TOML
Raw Normal View History

2023-01-10 11:22:17 -05:00
# The URL the site will be built for
base_url = "https://www.penguincoder.org"
2023-01-10 11:22:17 -05:00
# 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
2023-01-10 16:05:33 -05:00
taxonomies = [
{ name = "tags", paginate_by = 10 },
]
2023-01-10 11:22:17 -05:00
[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
highlight_theme = "inspired-github"
2023-01-10 11:22:17 -05:00
[extra]
2023-01-10 16:05:33 -05:00
juice_logo_name = "penguincoder"
juice_logo_path = "/tux.png"
2023-01-10 16:05:33 -05:00
juice_exclude_menu = []
juice_extra_menu = [
2023-02-03 14:10:24 -05:00
{ title = "Blog", link = "/blog/" },
2023-01-10 16:05:33 -05:00
]
repository_url = "https://git.penguincoder.org/penguincoder/penguincoder-org"