ntfy/mkdocs.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

104 lines
2.6 KiB
YAML
Raw Permalink 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:
2023-11-28 03:56:22 +01:00
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
2021-12-02 05:08:12 +01:00
hooks:
- docs/hooks.py
2021-12-02 05:08:12 +01:00
plugins:
- search
2021-12-05 05:37:50 +01:00
- minify:
minify_html: true
2021-12-02 05:08:12 +01:00
nav:
2023-11-28 03:56:22 +01:00
- "Getting started": index.md
- "Publishing":
- "Sending messages": publish.md
- "Subscribing":
- "From your phone": subscribe/phone.md
- "From the Web app": subscribe/web.md
- "From the Desktop": subscribe/pwa.md
- "From the CLI": subscribe/cli.md
- "Using the API": subscribe/api.md
- "Self-hosting":
- "Installation": install.md
- "Configuration": config.md
- "Other things":
- "FAQs": faq.md
- "Examples": examples.md
- "Integrations + projects": integrations.md
- "Release notes": releases.md
- "Emojis 🥳 🎉": emojis.md
- "Troubleshooting": troubleshooting.md
- "Known issues": known-issues.md
- "Deprecation notices": deprecations.md
- "Development": develop.md
- "Privacy policy": privacy.md
2021-12-02 05:08:12 +01:00