ntfy/mkdocs.yml

103 lines
2.5 KiB
YAML
Raw Normal View History

2021-12-02 23:27:31 +01:00
site_dir: server/docs
site_name: ntfy
2021-12-02 05:08:12 +01:00
site_url: https://ntfy.sh
2021-12-17 15:32:59 +01:00
site_description: Send push notifications to your phone via PUT/POST
2021-12-02 05:08:12 +01:00
copyright: Made with ❤️ by Philipp C. Heckel
repo_name: binwiederhier/ntfy
repo_url: https://github.com/binwiederhier/ntfy
2021-12-17 15:32:59 +01:00
edit_uri: blob/main/docs/
2021-12-02 05:08:12 +01:00
theme:
name: material
font: false
2021-12-02 05:08:12 +01:00
language: en
2023-02-20 15:19:51 +01:00
custom_dir: docs/_overrides
2021-12-02 05:08:12 +01:00
logo: static/img/ntfy.png
2023-04-27 19:08:24 +02:00
favicon: static/img/favicon.ico
2021-12-02 05:08:12 +01:00
include_search_page: false
search_index_only: true
palette:
- media: "(prefers-color-scheme: light)" # Light mode
scheme: default
toggle:
icon: material/lightbulb-outline
2021-12-07 02:05:06 +01:00
name: Switch to dark mode
2021-12-02 05:08:12 +01:00
- media: "(prefers-color-scheme: dark)" # Dark mode
scheme: slate
accent: indigo
toggle:
icon: material/lightbulb
2021-12-07 02:05:06 +01:00
name: Switch to light mode
2021-12-02 05:08:12 +01:00
features:
- search.suggest
- search.highlight
- search.share
- navigation.sections
- toc.integrate
- content.tabs.link
2021-12-05 02:23:29 +01:00
extra:
homepage: /
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/binwiederhier
2021-12-02 05:08:12 +01:00
extra_javascript:
- static/js/extra.js
extra_css:
- static/css/extra.css
markdown_extensions:
- admonition
- meta
- toc:
permalink: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
2021-12-04 02:38:21 +01:00
- pymdownx.highlight:
extend_pygments_lang:
- name: php-inline
lang: php
options:
startinline: true
2021-12-02 05:08:12 +01:00
- pymdownx.tasklist:
custom_checkbox: true
- attr_list
- md_in_html
2022-05-26 22:22:47 +02:00
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
2021-12-02 05:08:12 +01:00
plugins:
- search
2021-12-05 05:37:50 +01:00
- minify:
minify_html: true
- mkdocs-simple-hooks:
hooks:
on_post_build: "docs.hooks:copy_fonts"
2021-12-02 05:08:12 +01:00
nav:
- "Getting started": index.md
- "Publishing":
2021-12-02 23:27:31 +01:00
- "Sending messages": publish.md
2021-12-02 05:08:12 +01:00
- "Subscribing":
2021-12-05 02:23:29 +01:00
- "From your phone": subscribe/phone.md
2023-02-15 21:39:01 +01:00
- "From the Web app": subscribe/web.md
- "From the CLI": subscribe/cli.md
2021-12-05 02:23:29 +01:00
- "Using the API": subscribe/api.md
- "Self-hosting":
- "Installation": install.md
- "Configuration": config.md
2021-12-02 05:08:12 +01:00
- "Other things":
2021-12-05 02:23:29 +01:00
- "FAQs": faq.md
2021-12-02 05:08:12 +01:00
- "Examples": examples.md
- "Integrations + projects": integrations.md
2022-02-27 21:45:43 +01:00
- "Release notes": releases.md
- "Emojis 🥳 🎉": emojis.md
2023-03-20 20:34:10 +01:00
- "Troubleshooting": troubleshooting.md
2022-12-21 03:58:54 +01:00
- "Known issues": known-issues.md
- "Deprecation notices": deprecations.md
2021-12-02 05:08:12 +01:00
- "Development": develop.md
2021-12-05 02:23:29 +01:00
- "Privacy policy": privacy.md
2021-12-02 05:08:12 +01:00