mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-11 15:52:18 +00:00
80 lines
1.9 KiB
YAML
80 lines
1.9 KiB
YAML
site_name: RustiCal Documentation
|
|
site_url: https://lennart-k.github.io/rustical/
|
|
site_description: a CalDAV/CardDAV server
|
|
|
|
repo_name: lennart-k/rustical
|
|
repo_url: https://github.com/lennart-k/rustical
|
|
|
|
theme:
|
|
name: material
|
|
palette:
|
|
- media: "(prefers-color-scheme)"
|
|
toggle:
|
|
icon: material/link
|
|
name: Switch to light mode
|
|
- media: "(prefers-color-scheme: light)"
|
|
scheme: default
|
|
primary: white
|
|
accent: indigo
|
|
toggle:
|
|
icon: material/toggle-switch
|
|
name: Switch to dark mode
|
|
- media: "(prefers-color-scheme: dark)"
|
|
scheme: slate
|
|
primary: black
|
|
accent: indigo
|
|
toggle:
|
|
icon: material/toggle-switch-off
|
|
name: Switch to system preference
|
|
font:
|
|
text: Roboto
|
|
code: Roboto Mono
|
|
favicon: assets/favicon.png
|
|
icon:
|
|
logo: logo
|
|
features:
|
|
- content.code.copy
|
|
- content.code.annotate
|
|
- content.tooltips
|
|
- navigation.indices
|
|
- navigation.tabs
|
|
- navigation.indexes
|
|
- navigation.indexes
|
|
- navigation.instant
|
|
- navigation.footer
|
|
|
|
extra_css:
|
|
- style.css
|
|
|
|
markdown_extensions:
|
|
- fenced_code
|
|
- smarty
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
line_spans: __span
|
|
pygments_lang_class: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.snippets
|
|
- pymdownx.superfences
|
|
- admonition
|
|
- attr_list
|
|
- pymdownx.tabbed
|
|
- pymdownx.emoji:
|
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- Installation:
|
|
- installation/index.md
|
|
- Configuration: installation/configuration.md
|
|
- Notes: installation/notes.md
|
|
- Client Setup: setup/client.md
|
|
- OpenID Connect: setup/oidc.md
|
|
- Developers:
|
|
- developers/index.md
|
|
- Relevant RFCs: developers/rfcs.md
|
|
- Frontend: developers/frontend.md
|
|
- Debugging: developers/debugging.md
|
|
- Cargo docs: /rustical/_crate/rustical/
|