From 5aba21b750681c58ea7190558380c7fabea6249a Mon Sep 17 00:00:00 2001 From: Martin Weise <martin.weise@tuwien.ac.at> Date: Mon, 30 Oct 2023 20:03:37 +0100 Subject: [PATCH] Fixed the paths --- mkdocs.yml | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/mkdocs.yml b/mkdocs.yml index 11f0e4828c..f92859256f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -3,6 +3,7 @@ repo_url: https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-service repo_name: fda-services site_author: Research Unit Data Science, Technische Universität Wien copyright: CC-BY 4.0 Technische Universität Wien & Universität Wien +docs_dir: .docs nav: - Home: index.md - get-started.md @@ -14,7 +15,7 @@ extra_css: - stylesheets/extra.css theme: favicon: images/signet_white.png - custom_dir: docs/overrides + custom_dir: .docs/overrides logo: images/signet_white.png font: text: IBM Plex Serif @@ -22,17 +23,31 @@ theme: features: - navigation.tabs - navigation.tabs.sticky + - navigation.instant + - navigation.sections - content.code.annotate + - content.code.copy icon: repo: fontawesome/brands/git-alt palette: - scheme: default - primary: custom - font: - code: Roboto Mono - toggle: - icon: material/weather-night - name: Switch to light mode + # Palette toggle for light mode + - media: "(prefers-color-scheme: light)" + scheme: default + primary: custom + font: + code: Roboto Mono + toggle: + icon: material/brightness-7 + name: Switch to dark mode + # Palette toggle for dark mode + - media: "(prefers-color-scheme: dark)" + scheme: slate + primary: custom + font: + code: Roboto Mono + toggle: + icon: material/brightness-4 + name: Switch to light mode name: material markdown_extensions: - attr_list -- GitLab