this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 29 lines 876 B view raw
1# The URL the site will be built for 2base_url = "/" 3 4title = "Valence - A Minecraft server framework" 5 6# Whether to automatically compile all Sass files in the sass directory 7compile_sass = true 8 9# When set to "true", the generated HTML files are minified. 10minify_html = true 11 12[markdown] 13# Whether to do syntax highlighting 14# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola 15highlight_code = true 16 17# The theme to use for code highlighting. 18highlight_theme = "css" 19highlight_themes_css = [{ theme = "one-dark", filename = "syntax-theme.css" }] 20 21[extra] 22juice_extra_menu = [ 23 { title = "Discord", link = "https://discord.gg/8Fqqy9XrYb" }, 24 { title = "GitHub", link = "https://github.com/valence-rs/valence" }, 25] 26 27juice_logo_name = "Valence" 28juice_logo_path = "valence.svg" 29repository_url = "https://github.com/valence-rs/valence"