-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
48 lines (47 loc) · 1.35 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
48
site_name: EDAM
theme:
name: material
logo: assets/eco.png
favicon: images/favicon.ico
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
repo_name: 'EDAM'
repo_url: 'https://github.com/BigDataWUR/EDAM'
copyright: 'Copyright © 2017, Argyrios Samourkasidis'
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
nav:
- Home: 'index.md'
- Installation: 'installation.md'
- EDAM template language:
- Metadata: 'edam-template-language/metadata.md'
- Template: 'edam-template-language/template.md'
- Proposed workflow: 'workflow.md'
- Test cases:
- AgMIP and APSIM: 'test-cases/agmip_apsim.md'
- AgMIP: 'test-cases/agmip.md'
- APSIM: 'test-cases/apsim.md'
- UK Met office: 'test-cases/uk_met.md'
- API:
- Station: 'api/station.md'
- Observable: 'api/observable.md'
- Sensor: 'api/sensor.md'
- Unit of Measurement: 'api/unit_of_measurement.md'
- Observation: 'api/observation.md'
- Junction table: 'api/junction.md'