You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
TOML
58 lines
1.4 KiB
TOML
# The URL the site will be built for
|
|
base_url = "https://labasetoulouse.fr/"
|
|
|
|
# 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
|
|
|
|
# Do build rss.xml
|
|
generate_feed = true
|
|
feed_filename = "rss.xml"
|
|
|
|
taxonomies = [
|
|
{name = "authors"},
|
|
{name = "tags"},
|
|
{name = "category"},
|
|
]
|
|
|
|
default_language = "fr"
|
|
|
|
|
|
[markdown]
|
|
# Whether to do syntax highlighting
|
|
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
|
|
highlight_code = false
|
|
|
|
[extra]
|
|
# Put all your custom variables here
|
|
name = "La BASE Toulouse"
|
|
logo = "img/logo_rect.svg"
|
|
description = "Site web de la base Toulouse"
|
|
|
|
# This configures the navigation menu
|
|
[extra.nav]
|
|
links = [
|
|
# "_index.md",
|
|
"fonctionnement.md",
|
|
"lieu.md",
|
|
"participer.md",
|
|
"agenda.md",
|
|
"contact.md",
|
|
# "liens.md"
|
|
]
|
|
|
|
# the following links will appear in the footer
|
|
[[extra.social.link]]
|
|
name = "Mastodon"
|
|
url = "https://mastodon.social/@labasetoulouse"
|
|
img = "https://cdn.simpleicons.org/mastodon/FFF"
|
|
[[extra.social.link]]
|
|
name = "Instagram"
|
|
url = "https://www.instagram.com/labasetoulouse/"
|
|
img = "https://cdn.simpleicons.org/instagram/FFF"
|
|
[[extra.social.link]]
|
|
name = "Facebook"
|
|
url = "https://www.facebook.com/laBaseToulouse/"
|
|
img = "https://cdn.simpleicons.org/facebook/FFF" |