mkdocs.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. site_name: ntfy.sh
  2. site_url: https://ntfy.sh
  3. site_description: simple HTTP-based pub-sub
  4. copyright: Made with ❤️ by Philipp C. Heckel
  5. repo_name: binwiederhier/ntfy
  6. repo_url: https://github.com/binwiederhier/ntfy
  7. edit_uri: edit/main/docs/
  8. theme:
  9. name: material
  10. # custom_dir: docs/overrides
  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. primary: teal
  20. toggle:
  21. icon: material/lightbulb-outline
  22. name: Switch to light mode
  23. - media: "(prefers-color-scheme: dark)" # Dark mode
  24. scheme: slate
  25. primary: teal
  26. accent: indigo
  27. toggle:
  28. icon: material/lightbulb
  29. name: Switch to dark mode
  30. features:
  31. - search.suggest
  32. - search.highlight
  33. - search.share
  34. - navigation.sections
  35. - toc.integrate
  36. - content.tabs.link
  37. extra_javascript:
  38. - static/js/extra.js
  39. extra_css:
  40. - static/css/extra.css
  41. markdown_extensions:
  42. - admonition
  43. - codehilite
  44. - meta
  45. - toc:
  46. permalink: true
  47. - pymdownx.tabbed:
  48. alternate_style: true
  49. - pymdownx.superfences
  50. - pymdownx.highlight
  51. - pymdownx.tasklist:
  52. custom_checkbox: true
  53. - footnotes
  54. - attr_list
  55. - md_in_html
  56. plugins:
  57. - search
  58. extra:
  59. social:
  60. - icon: fontawesome/brands/github-alt
  61. link: https://github.com/binwiederhier
  62. nav:
  63. - "Getting started": index.md
  64. - "Installation": install.md
  65. - "Configuration": config.md
  66. - "Publishing":
  67. - "Sending messages": publish/index.md
  68. - "Subscribing":
  69. - "From the Android/iOS app": subscribe/phone.md
  70. - "From the Web UI": subscribe/web.md
  71. - "Using the API":
  72. - "Basic API usage": subscribe/api.md
  73. - "Fetching cached messages": subscribe/since.md
  74. - "Polling": subscribe/poll.md
  75. - "Other things":
  76. - "Examples": examples.md
  77. - "FAQs": faq.md
  78. - "Development": develop.md