-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmkdocs.yml
150 lines (141 loc) · 4.79 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# Project information
site_name: Fog Project Documentation (FOG Docs)
site_url: https://docs.fogproject.org
site_author: FOG Project
site_description: >-
Documentation for the FOG Project computer cloning and image deployment system
# Repository
repo_name: FOGProject/fog-docs
repo_url: https://github.com/FOGProject/fog-docs
# Copyright
copyright: Copyright © 2020 - 2023 FOG Project
#many of these options were taken from the material mkdocs home page so we can quickly use any options documented there
theme:
name: material
custom_dir: overrides
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
- navigation.footer
- navigation.instant
# - navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- navigation.indexes
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
favicon: assets/favicon.png
logo: assets/favicon.png
icon:
logo: logo
extra_css:
- "assets/css/custom.css"
plugins:
- search
- include_dir_to_nav # see also https://pypi.org/project/mkdocs-include-dir-to-nav/ this allows for an auto organized site map
- roamlinks # added for support of obsidian see also https://about.gitlab.com/blog/2022/03/15/publishing-obsidian-notes-with-gitlab-pages/ and https://github.com/Jackiexiao/mkdocs-roamlinks-plugin
- callouts
- git-revision-date
# - macros
- tags: # https://squidfunk.github.io/mkdocs-material/setup/setting-up-tags/
tags_file: tags.md
- redirects:
redirect_maps:
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.details
- pymdownx.magiclink
- nl2br
- pymdownx.tasklist
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- tables # see also https://squidfunk.github.io/mkdocs-material/reference/data-tables/
- toc:
permalink: true
nav:
- Home/Getting Started:
- Home: index.md
- What is Fog?: introduction.md
- System Requirements: installation/server/requirements.md
- Install Fog: installation/server/install-fog-server.md
- Capture an Image: kb/how-tos/capture-an-image.md
- Deploy an Image: kb/how-tos/deploy-an-image.md
- Installing/Updating:
- installation/README.md
- Network Setup: installation/network-setup
- Server Install: installation/server
- Client Install: installation/client
- Management:
- management/README.md
- Web Management:
- management/web/README.md
- Dashboard: management/web/dashboard.md
- User Management: management/web/users.md
- Host Management: management/web/hosts.md
- Group Management: management/web/groups.md
- Image Management: management/web/images.md
- Storage Node Management: management/web/storage-node.md
- Snapin Management: management/web/snapins.md
- Printer Management: management/web/printers.md
- Service Management: management/web/service.md
- Task Management: management/web/tasks.md
- Report Management: management/web/reports.md
- Fog Configuration: management/web/config.md
- AD Config: management/web/ad-integration.md
- Plugin Management: management/web/plugins.md
- Server Management: management/server
- FOS Management: management/fos
- Knowledge Base:
- kb/README.md
- FAQ: kb/faqs
- Customization: kb/customization
- Integrations: kb/integrations
- How-To Guides: kb/how-tos
- Troubleshooting: kb/troubleshooting
- Reference: kb/reference
- Development: development
- Tags: tags.md
- Release Notes: https://github.com/FOGProject/fogproject/blob/master/Release%20Notes.MD
- Security Advisories: https://forums.fogproject.org/category/25/security-advisories
# getting started/intro section (quick intro to what fog is vs isn't, links to install instructions, image capture/deploy instructions, etc.)
# install/update/migrate section
# General Management Section (basic use/glossary of the UI once installed)
# KB section (how to guides, troubleshooting guides, general reference docs)
# Development/Contribution Section (stuff like what we've added for making new releases)
hooks:
- hook.py