ntfy/mkdocs.yml

92 lines
2.1 KiB
YAML
Raw Normal View History

2021-12-03 11:27:31 +13:00
site_dir: server/docs
site_name: ntfy
2021-12-02 17:08:12 +13:00
site_url: https://ntfy.sh
2021-12-18 03:32:59 +13:00
site_description: Send push notifications to your phone via PUT/POST
2021-12-02 17:08:12 +13:00
copyright: Made with ❤️ by Philipp C. Heckel
repo_name: binwiederhier/ntfy
repo_url: https://github.com/binwiederhier/ntfy
2021-12-18 03:32:59 +13:00
edit_uri: blob/main/docs/
2021-12-02 17:08:12 +13:00
theme:
name: material
language: en
logo: static/img/ntfy.png
favicon: static/img/favicon.png
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 14:05:06 +13:00
name: Switch to dark mode
2021-12-02 17:08:12 +13:00
- media: "(prefers-color-scheme: dark)" # Dark mode
scheme: slate
accent: indigo
toggle:
icon: material/lightbulb
2021-12-07 14:05:06 +13:00
name: Switch to light mode
2021-12-02 17:08:12 +13:00
features:
- search.suggest
- search.highlight
- search.share
- navigation.sections
- toc.integrate
- content.tabs.link
2021-12-05 14:23:29 +13:00
extra:
homepage: /
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/binwiederhier
2021-12-02 17:08:12 +13: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 14:38:21 +13:00
- pymdownx.highlight:
extend_pygments_lang:
- name: php-inline
lang: php
options:
startinline: true
2021-12-02 17:08:12 +13:00
- pymdownx.tasklist:
custom_checkbox: true
- attr_list
- md_in_html
plugins:
- search
2021-12-05 17:37:50 +13:00
- minify:
minify_html: true
2021-12-02 17:08:12 +13:00
nav:
- "Getting started": index.md
- "Publishing":
2021-12-03 11:27:31 +13:00
- "Sending messages": publish.md
2021-12-02 17:08:12 +13:00
- "Subscribing":
2021-12-05 14:23:29 +13:00
- "From your phone": subscribe/phone.md
- "From the Web UI": subscribe/web.md
- "From the CLI": subscribe/cli.md
2021-12-05 14:23:29 +13:00
- "Using the API": subscribe/api.md
- "Self-hosting":
- "Installation": install.md
- "Configuration": config.md
2021-12-02 17:08:12 +13:00
- "Other things":
2021-12-05 14:23:29 +13:00
- "FAQs": faq.md
2021-12-02 17:08:12 +13:00
- "Examples": examples.md
2022-02-28 09:45:43 +13:00
- "Release notes": releases.md
2021-12-18 03:32:59 +13:00
- "Deprecation notices": deprecations.md
2022-02-28 09:45:43 +13:00
- "Emojis 🥳 🎉": emojis.md
2021-12-02 17:08:12 +13:00
- "Development": develop.md
2021-12-05 14:23:29 +13:00
- "Privacy policy": privacy.md
2021-12-02 17:08:12 +13:00