mkdocs.yml: add
Added mkdocs.yml and base structure of docs.
This commit is contained in:
parent
8f0bc2fbb5
commit
5b30ca997f
6 changed files with 115 additions and 0 deletions
70
mkdocs.yml
Normal file
70
mkdocs.yml
Normal file
|
@ -0,0 +1,70 @@
|
|||
site_name: Ampel Blog
|
||||
site_url: https://blog.ampel.dev
|
||||
copyright: Copyright © 2023 - 2025 Ampel Organisation
|
||||
|
||||
repo_name: ampel/blog
|
||||
repo_url: https://git.ampel.dev/ampel/blog
|
||||
|
||||
extra:
|
||||
generator: false
|
||||
|
||||
theme:
|
||||
name: material
|
||||
features:
|
||||
- navigation.instant
|
||||
- navigation.instant.progress
|
||||
- navigation.indexes
|
||||
- navigation.tabs
|
||||
- navigation.sections
|
||||
- toc.follow
|
||||
- search.suggest
|
||||
- search.highlight
|
||||
- search.share
|
||||
- content.code.copy
|
||||
- content.code.annotate
|
||||
# logo: assets/ampel-logo.png
|
||||
# favicon: assets/ampel-logo.png
|
||||
palette:
|
||||
- media: "(prefers-color-scheme: light)"
|
||||
scheme: default
|
||||
primary: white
|
||||
accent: blue
|
||||
toggle:
|
||||
icon: material/brightness-7
|
||||
name: Switch to dark mode
|
||||
- media: "(prefers-color-scheme: dark)"
|
||||
scheme: slate
|
||||
primary: black
|
||||
accent: teal
|
||||
toggle:
|
||||
icon: material/brightness-3
|
||||
name: Switch to light mode
|
||||
|
||||
markdown_extensions:
|
||||
- admonition
|
||||
- attr_list
|
||||
- md_in_html
|
||||
- pymdownx.details
|
||||
- pymdownx.superfences
|
||||
- pymdownx.highlight:
|
||||
anchor_linenums: true
|
||||
line_spans: __span
|
||||
pygments_lang_class: true
|
||||
- pymdownx.inlinehilite
|
||||
- pymdownx.snippets
|
||||
|
||||
plugins:
|
||||
- search
|
||||
- tags
|
||||
- social
|
||||
- blog:
|
||||
blog_dir: desktop-os
|
||||
- blog:
|
||||
blog_dir: server-os
|
||||
|
||||
nav:
|
||||
- 'Home': index.md
|
||||
- 'Desktop OS':
|
||||
- desktop-os/index.md
|
||||
- 'Server OS':
|
||||
- server-os/index.md
|
Loading…
Add table
Add a link
Reference in a new issue