forked from FluidNumerics/pyself
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
47 lines (41 loc) · 1.07 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
site_name: Python interface for SELF
site_description: Documentation for Python interface to SELF
site_author: Fluid Numerics
site_dir: public
site_url: ""
repo_name: GitHub/fluidnumerics/pyself
repo_url: https://github.com/fluidnumerics/pyself
edit_uri: edit/main/docs
# Directory where site content is located
docs_dir: docs
# Site navigation
nav:
- Home: index.md
- Getting Started:
- Quick Start: GettingStarted/QuickStart.md
- Installation: GettingStarted/Installation.md
- About:
- Release Notes: About/ReleaseNotes.md
- Road Map: About/RoadMap.md
theme:
name: material
favicon: assets/images/favicon.png
logo: assets/images/logo-fluid-numerics.png
palette:
- scheme: slate
primary: black
accent: cyan
toggle:
icon: material/brightness-4
name: Switch to light mode
- scheme: default
primary: black
accent: cyan
toggle:
icon: material/brightness-7
name: Switch to dark mode
markdown_extensions:
- admonition
- pymdownx.arithmatex:
generic: true
plugins: []