-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
60 lines (57 loc) · 1.83 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
site_name: HackUCF Private Cloud Docs
copyright: CC-BY - Copyright © 2024 Collegiate Cyber Defense Club
repo_url: https://github.com/HackUCF/PCV2-Wiki
repo_name: HackUCF/PCV2-Wiki
edit_uri: edit/main/docs/
site_url: https://help.hackucf.org/
dev_url: 127.0.0.1:8000
theme:
name: material
logo: assets/logo.svg
favicon: assets/favicon.svg
features:
- navigation.indexes
- navigation.tracking
- navigation.sections
- navigation.expand
- content.action.edit
- content.action.view
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: amber
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: amber
toggle:
icon: material/brightness-4
name: Switch to light mode
nav:
- Home: index.md
- "User Guides":
- "Overview of OpenStack": "guides/Overview of OpenStack GUI.md"
- "OpenStack Setup Guide": "guides/OpenStack Setup Guide.md"
- "Security Groups Guide": "guides/Security Groups.md"
- "How to Launch an Instance": "guides/How to Launch an Instance.md"
- "Migration Guide": "guides/Migrate Instance.md"
- "OpenStack with Terraform": "guides/OpenStack with Terraform.md"
- "Windows Instances": "guides/How to access Windows Instances.md"
- "Troubleshooting": "guides/Troubleshooting.md"
- "Linux Cyberlab Secure": "guides/Linux Cyberlab Secure.md"
#extra_css:
# - stylesheets/extra.css
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences