-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathmkdocs.yml
81 lines (75 loc) · 3.08 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
69
70
71
72
73
74
75
76
77
78
79
80
site_name: HTCondor-CE Documentation
site_url: https://htcondor.github.io/htcondor-ce
repo_url: https://github.com/htcondor/htcondor-ce/
edit_uri: edit/docs/docs/
theme:
name: material
favicon: img/favicon-32x32.png
features:
- navigation.tabs # Split top-level nav items into their own menu at the top of the pages
- toc.integrate # integrate the table of contents into the left nav
- navigation.top # adds back-to-top button that appears when scrolling up
extra_css:
- css/superfences.css
- css/extra.css
nav:
- Home:
- 'Overview': 'index.md'
- 'Architecture': 'architecture.md'
- HTCondor-CE 24:
- Installation: 'v24/installation/htcondor-ce.md'
- Configuration:
- Authentication: 'v24/configuration/authentication.md'
- Local Batch System: 'v24/configuration/local-batch-system.md'
- Job Router:
- Overview: 'v24/configuration/job-router-overview.md'
- Writing Job Routes: 'v24/configuration/writing-job-routes.md'
- For HTCondor Batch Systems: 'v24/configuration/htcondor-routes.md'
- For Non-HTCondor Batch Systems: 'v24/configuration/non-htcondor-routes.md'
- Optional Configuration: 'v24/configuration/optional-configuration.md'
- Operation: 'v24/operation.md'
- Troubleshooting:
- Common Issues: 'v24/troubleshooting/common-issues.md'
- Debugging Tools: 'v24/troubleshooting/debugging-tools.md'
- Helpful Logs: 'v24/troubleshooting/logs.md'
- Central Grid Operations:
- Submit Jobs Remotely: 'v24/remote-job-submission.md'
- Remote Troubleshooting: 'v24/troubleshooting/remote-troubleshooting.md'
- Install a Central Collector: 'v24/installation/central-collector.md'
- Releases: 'v24/releases.md'
- Reference: 'v24/reference.md'
- HTCondor-CE 23:
- Installation: 'v23/installation/htcondor-ce.md'
- Configuration:
- Authentication: 'v23/configuration/authentication.md'
- Local Batch System: 'v23/configuration/local-batch-system.md'
- Job Router:
- Overview: 'v23/configuration/job-router-overview.md'
- Writing Job Routes: 'v23/configuration/writing-job-routes.md'
- For HTCondor Batch Systems: 'v23/configuration/htcondor-routes.md'
- For Non-HTCondor Batch Systems: 'v23/configuration/non-htcondor-routes.md'
- Optional Configuration: 'v23/configuration/optional-configuration.md'
- Operation: 'v23/operation.md'
- Troubleshooting:
- Common Issues: 'v23/troubleshooting/common-issues.md'
- Debugging Tools: 'v23/troubleshooting/debugging-tools.md'
- Helpful Logs: 'v23/troubleshooting/logs.md'
- Central Grid Operations:
- Submit Jobs Remotely: 'v23/remote-job-submission.md'
- Remote Troubleshooting: 'v23/troubleshooting/remote-troubleshooting.md'
- Install a Central Collector: 'v23/installation/central-collector.md'
- Releases: 'v23/releases.md'
- Reference: 'v23/reference.md'
markdown_extensions:
- admonition
- codehilite:
guess_lang: False
- toc:
permalink: True
- pymdownx.tabbed
- pymdownx.superfences
plugins:
- search
- redirects:
redirect_maps:
'v23/verification.md': 'v23/operation.md'