-
Notifications
You must be signed in to change notification settings - Fork 16
/
mkdocs.yml
68 lines (68 loc) · 2.05 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
site_name: ExCALIBUR-tests Docs
site_url: !ENV [MKDOCS_SITE_URL, 'https://ukri-excalibur.github.io/excalibur-tests/']
site_dir: !ENV [MKDOCS_SITE_DIR, 'site']
remote_branch: !ENV [MKDOCS_REMOTE_BRANCH, 'gh-pages']
repo_url: https://github.com/ukri-excalibur/excalibur-tests
nav:
- Home: index.md
- Installation: install.md
- Setup: setup.md
- Usage: use.md
- Post-processing: post-processing/README.md
- Contributing: contributing.md
- 'Supported Benchmarks':
- 'Synthetic Benchmarks':
- HPL: apps/hpl/README.md
- IMB: apps/imb/README.md
- OMB: apps/omb/README.md
- 'Mini-apps':
- hpcg: apps/hpcg/README.md
- hpgmg: apps/hpgmg/README.md
- sombrero: apps/sombrero/README.md
- babelstream: apps/babelstream/README.md
- 'Applications':
- cp2k: apps/cp2k/README.md
- grid: apps/grid/README.md
- openmm: apps/openmm/README.md
- ramses: apps/ramses/README.md
- sphng: apps/sphng/README.md
- swift: apps/swift/README.md
- trove: apps/trove/README.md
- trove-pdsyev: apps/trove-pdsyev/README.md
- wrf: apps/wrf/README.md
- 'Supported Systems':
- ARCHER2: systems#archer2
- CSD3: systems#csd3
- Cosma: systems#cosma
- DIaL2: systems#dial2
- DIaL3: systems#dial3
- Isambard 2: systems#isambard-2
- Myriad: systems#myriad-and-kathleen
- Kathleen: systems#myriad-and-kathleen
- Tursa: systems#tursa
- ARCHER2 Tutorial: tutorial/tutorial.md
theme:
name: material
features:
- content.code.copy
- content.code.select
- content.code.annotate
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences