From 336fd3f7566c7872c17b30f7cd150e1d16899205 Mon Sep 17 00:00:00 2001 From: sptaule Date: Mon, 24 Jan 2022 18:36:50 +0100 Subject: First commit --- config.toml | 167 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 167 insertions(+) create mode 100755 config.toml (limited to 'config.toml') diff --git a/config.toml b/config.toml new file mode 100755 index 0000000..d760b2f --- /dev/null +++ b/config.toml @@ -0,0 +1,167 @@ +# The base URL of the site; the only required configuration variable. +base_url = "https://garagehq.deuxfleurs.fr" + +# The site title and description; used in feeds by default. +title = "Garage" +description = "An open-source distributed storage service you can self-host to fullfill many needs" + +# The default language; used in feeds. +default_language = "en" + +# For overriding the default output directory `public`, set it to another value (e.g.: "docs") +output_dir = "public" + +# When set to "true", the Sass files in the `sass` directory in the site root are compiled. +# Sass files in theme directories are always compiled. +compile_sass = true + +# When set to "true", the generated HTML files are minified. +minify_html = false + +# A list of glob patterns specifying asset files to ignore when the content +# directory is processed. Defaults to none, which means that all asset files are +# copied over to the `public` directory. +# Example: +# ignored_content = ["*.{graphml,xlsx}", "temp.*"] +ignored_content = [] + +# When set to "true", a feed is automatically generated. +generate_feed = true + +# The filename to use for the feed. Used as the template filename, too. +# Defaults to "atom.xml", which has a built-in template that renders an Atom 1.0 feed. +# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed. +feed_filename = "rss.xml" + +# The number of articles to include in the feed. All items are included if +# this limit is not set (the default). +# feed_limit = 20 + +# When set to "true", files in the `static` directory are hard-linked. Useful for large +# static files. Note that for this to work, both `static` and the +# output directory need to be on the same filesystem. Note that the theme's `static` +# files are always copied, regardless of this setting. +hard_link_static = false + +# The taxonomies to be rendered for the site and their configuration of the default languages +# Example: +# taxonomies = [ +# {name = "tags", feed = true}, # each tag will have its own feed +# {name = "tags"}, # you can have taxonomies with the same name in multiple languages +# {name = "categories", paginate_by = 5}, # 5 items per page for a term +# {name = "authors"}, # Basic definition: no feed or pagination +# ] +# +taxonomies = [ + { name = "categories", feed = true, paginate_by = 10 }, + { name = "tags", feed = true, paginate_by = 10 } +] + +# When set to "true", a search index is built from the pages and section +# content for `default_language`. +build_search_index = true + +# Configuration of the Markdown rendering +[markdown] +# When set to "true", all code blocks are highlighted. +highlight_code = true + +# A list of directories used to search for additional `.sublime-syntax` files. +extra_syntaxes = [] + +# The theme to use for code highlighting. +# See below for list of allowed values. +highlight_theme = "one-dark" + +# When set to "true", emoji aliases translated to their corresponding +# Unicode emoji equivalent in the rendered Markdown files. (e.g.: :smile: => 😄) +render_emoji = true + +# Whether external links are to be opened in a new tab +# If this is true, a `rel="noopener"` will always automatically be added for security reasons +external_links_target_blank = true + +# Whether to set rel="nofollow" for all external links +external_links_no_follow = true + +# Whether to set rel="noreferrer" for all external links +external_links_no_referrer = true + +# Whether smart punctuation is enabled (changing quotes, dashes, dots in their typographic form) +# For example, `...` into `…`, `"quote"` into `“curly”` etc +smart_punctuation = false + +# Configuration of the link checker. +[link_checker] +# Skip link checking for external URLs that start with these prefixes +skip_prefixes = [ + "http://[2001:db8::]/", +] + +# Skip anchor checking for external URLs that start with these prefixes +skip_anchor_prefixes = [ + "https://caniuse.com/", +] + +# Various slugification strategies, see below for details +# Defaults to everything being a slug +[slugify] +paths = "on" +taxonomies = "on" +anchors = "on" + +[search] +# Whether to include the title of the page/section in the index +include_title = true +# Whether to include the description of the page/section in the index +include_description = false +# Whether to include the path of the page/section in the index +include_path = false +# Whether to include the rendered content of the page/section in the index +include_content = true + +[extra] +katex.enabled = true +katex.auto_render = true + +chart.enabled = true +mermaid.enabled = true +galleria.enabled = true + +navbar_items = [ + { code = "en", nav_items = [ + { url = "$BASE_URL/", name = "Overview" }, + { url = "$BASE_URL/documentation", name = "Docs" }, + { url = "$BASE_URL/blog", name = "Blog" } + ] }, +] + +[extra.favicon] +favicon_16x16 = "/icons/favicon-16x16.png" +favicon_32x32 = "/icons/favicon-32x32.png" +apple_touch_icon = "/icons/apple-touch-icon.png" +safari_pinned_tab = "/icons/safari-pinned-tab.svg" +webmanifest = "/icons/site.webmanifest" + +[extra.organization] +name = "Garage" +description = "An open-source distributed storage service you can self-host to fullfill many needs" +logo = "/images/garage-logo.svg" + +[extra.author] +name = "Garage" +avatar = "/images/garage-logo.svg" + +[extra.social] +git = "https://git.deuxfleurs.fr/Deuxfleurs/garage" +email = "contact@garagehq.com" + +[extra.analytics] +google = "UA-176984489-2" + +[extra.commenting] +disqus = "deepthought-theme" + +[extra.mapbox] +enabled = true +access_token = "pk.eyJ1IjoicmF0YW5zaHJlc2h0aGEiLCJhIjoiY2tla2s2NmM3MDd0ZzJzbXFtc3Y2YmU0NyJ9.0RhUnJPKbxHWw3xGPnnBlA" -- cgit v1.2.3