mkdocs.yml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. site_dir: server/docs
  2. site_name: ntfy
  3. site_url: https://ntfy.sh
  4. site_description: Send push notifications to your phone via PUT/POST
  5. copyright: Made with ❤️ by Philipp C. Heckel
  6. repo_name: binwiederhier/ntfy
  7. repo_url: https://github.com/binwiederhier/ntfy
  8. edit_uri: blob/main/docs/
  9. theme:
  10. name: material
  11. language: en
  12. logo: static/img/ntfy.png
  13. favicon: static/img/favicon.png
  14. include_search_page: false
  15. search_index_only: true
  16. palette:
  17. - media: "(prefers-color-scheme: light)" # Light mode
  18. scheme: default
  19. toggle:
  20. icon: material/lightbulb-outline
  21. name: Switch to dark mode
  22. - media: "(prefers-color-scheme: dark)" # Dark mode
  23. scheme: slate
  24. accent: indigo
  25. toggle:
  26. icon: material/lightbulb
  27. name: Switch to light mode
  28. features:
  29. - search.suggest
  30. - search.highlight
  31. - search.share
  32. - navigation.sections
  33. - toc.integrate
  34. - content.tabs.link
  35. extra:
  36. homepage: /
  37. social:
  38. - icon: fontawesome/brands/github-alt
  39. link: https://github.com/binwiederhier
  40. extra_javascript:
  41. - static/js/extra.js
  42. extra_css:
  43. - static/css/extra.css
  44. markdown_extensions:
  45. - admonition
  46. - meta
  47. - toc:
  48. permalink: true
  49. - pymdownx.tabbed:
  50. alternate_style: true
  51. - pymdownx.superfences
  52. - pymdownx.highlight:
  53. extend_pygments_lang:
  54. - name: php-inline
  55. lang: php
  56. options:
  57. startinline: true
  58. - pymdownx.tasklist:
  59. custom_checkbox: true
  60. - attr_list
  61. - md_in_html
  62. plugins:
  63. - search
  64. - minify:
  65. minify_html: true
  66. nav:
  67. - "Getting started": index.md
  68. - "Publishing":
  69. - "Sending messages": publish.md
  70. - "Subscribing":
  71. - "From your phone": subscribe/phone.md
  72. - "From the Web UI": subscribe/web.md
  73. - "From the CLI": subscribe/cli.md
  74. - "Using the API": subscribe/api.md
  75. - "Self-hosting":
  76. - "Installation": install.md
  77. - "Configuration": config.md
  78. - "Other things":
  79. - "FAQs": faq.md
  80. - "Examples": examples.md
  81. - "Release notes": releases.md
  82. - "Deprecation notices": deprecations.md
  83. - "Emojis 🥳 🎉": emojis.md
  84. - "Development": develop.md
  85. - "Privacy policy": privacy.md