Filling out site structure
This commit is contained in:
parent
a2f121d3c2
commit
954674b400
20 changed files with 88 additions and 4 deletions
9
docs/.nav.yml
Normal file
9
docs/.nav.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
nav:
|
||||
- about
|
||||
- sourcecamp
|
||||
- docshq
|
||||
- postline
|
||||
- stagelink
|
||||
- policies
|
||||
- handbook
|
||||
- contact
|
3
docs/about/.nav.yml
Normal file
3
docs/about/.nav.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
title: About
|
||||
nav:
|
||||
- index.md
|
3
docs/contact/.nav.yml
Normal file
3
docs/contact/.nav.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
title: Contact
|
||||
nav:
|
||||
- index.md
|
1
docs/contact/index.md
Normal file
1
docs/contact/index.md
Normal file
|
@ -0,0 +1 @@
|
|||
# Contact StarCat Systems
|
3
docs/docshq/.nav.yml
Normal file
3
docs/docshq/.nav.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
title: DocsHQ
|
||||
nav:
|
||||
- index.md
|
1
docs/docshq/index.md
Normal file
1
docs/docshq/index.md
Normal file
|
@ -0,0 +1 @@
|
|||
# DocsHQ
|
4
docs/handbook/.nav.yml
Normal file
4
docs/handbook/.nav.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
title: Handbook
|
||||
nav:
|
||||
- index.md
|
||||
- meta
|
1
docs/handbook/index.md
Normal file
1
docs/handbook/index.md
Normal file
|
@ -0,0 +1 @@
|
|||
# StarCat Systems Handbook
|
4
docs/handbook/meta/.nav.yml
Normal file
4
docs/handbook/meta/.nav.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
title: Meta
|
||||
nav:
|
||||
- index.md
|
||||
- editing.md
|
1
docs/handbook/meta/editing.md
Normal file
1
docs/handbook/meta/editing.md
Normal file
|
@ -0,0 +1 @@
|
|||
# Editing this site
|
1
docs/handbook/meta/index.md
Normal file
1
docs/handbook/meta/index.md
Normal file
|
@ -0,0 +1 @@
|
|||
# Handbook Meta
|
3
docs/policies/.nav.yml
Normal file
3
docs/policies/.nav.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
title: Policies
|
||||
nav:
|
||||
- index.md
|
1
docs/policies/index.md
Normal file
1
docs/policies/index.md
Normal file
|
@ -0,0 +1 @@
|
|||
# Policies
|
3
docs/postline/.nav.yml
Normal file
3
docs/postline/.nav.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
title: Postline
|
||||
nav:
|
||||
- index.md
|
1
docs/postline/index.md
Normal file
1
docs/postline/index.md
Normal file
|
@ -0,0 +1 @@
|
|||
# Postline
|
3
docs/sourcecamp/.nav.yml
Normal file
3
docs/sourcecamp/.nav.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
title: SourceCamp
|
||||
nav:
|
||||
- index.md
|
1
docs/sourcecamp/index.md
Normal file
1
docs/sourcecamp/index.md
Normal file
|
@ -0,0 +1 @@
|
|||
# SourceCamp
|
3
docs/stagelink/.nav.yml
Normal file
3
docs/stagelink/.nav.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
title: StageLink
|
||||
nav:
|
||||
- index.md
|
1
docs/stagelink/index.md
Normal file
1
docs/stagelink/index.md
Normal file
|
@ -0,0 +1 @@
|
|||
# StageLink
|
45
mkdocs.yml
45
mkdocs.yml
|
@ -15,14 +15,51 @@ theme:
|
|||
toggle:
|
||||
icon: material/lightbulb-outline
|
||||
name: Switch to light mode
|
||||
logo: assets/starcat_cat-icon_white_tp_smaller.svg
|
||||
logo: assets/starcat_cat-icon_white_tp.svg
|
||||
favicon: assets/favicon.svg
|
||||
icon:
|
||||
admonition:
|
||||
note: octicons/tag-16
|
||||
abstract: octicons/checklist-16
|
||||
info: octicons/info-16
|
||||
tip: octicons/squirrel-16
|
||||
success: octicons/check-16
|
||||
question: octicons/question-16
|
||||
warning: octicons/alert-16
|
||||
failure: octicons/x-circle-16
|
||||
danger: octicons/zap-16
|
||||
bug: octicons/bug-16
|
||||
example: octicons/beaker-16
|
||||
quote: octicons/quote-16
|
||||
features:
|
||||
- navigation.instant
|
||||
- navigation.instant.progress
|
||||
- navigation.tracking
|
||||
- navigation.tabs
|
||||
- navigation.tabs.sticky
|
||||
- navigation.path
|
||||
# - navigation.tabs.sticky
|
||||
# - navigation.path
|
||||
- navigation.indexes
|
||||
- navigation.top
|
||||
- navigation.top
|
||||
# - navigation.footer
|
||||
- header.autohide
|
||||
markdown_extensions:
|
||||
- admonition
|
||||
- pymdownx.details
|
||||
- pymdownx.superfences
|
||||
- pymdownx.critic
|
||||
- pymdownx.caret
|
||||
- pymdownx.keys
|
||||
- pymdownx.mark
|
||||
- pymdownx.tilde
|
||||
- tables
|
||||
- attr_list
|
||||
- md_in_html
|
||||
- pymdownx.emoji:
|
||||
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
||||
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
||||
copyright: Copyright © 2025 StarCat Systems. Released under CC BY-SA 4.0
|
||||
plugins:
|
||||
- typeset:
|
||||
enabled: true
|
||||
- search
|
||||
- awesome-nav
|
Loading…
Add table
Reference in a new issue