Description: configure mkdocs build for Debian systems
 Based on similar patches for projectile and python-markdown with
 some specific changes for python-guizero
 .
 1. set use_directory_urls to false so that links are to foo/index.html
    rather than to foo/, which is better for offline browsing
 .
 2. don't generate installation, development and deployment pages
 .
 3. remove nav item for about.md, which we use to replace index.md
 .
 4. use nature theme instead of litera theme
 .
Author: Nick Morrott <nickm@debian.org>
Forwarded: not-needed
Last-Update: 2025-02-02
---
--- a/docs/mkdocs.yml
+++ b/docs/mkdocs.yml
@@ -1,10 +1,9 @@
 site_name: guizero
 theme:
-  name: 'litera'
+  name: 'nature'
 extra_css: [extra.css]
+use_directory_urls: false
 nav:
-  - About: about.md
-  - Installation: index.md
   - Using guizero:
       - Getting started: start.md
       - Using Widgets: usingwidgets.md
@@ -41,6 +40,4 @@
   - Book : book.md
   - Contributing:
       - Notes: contributing.md
-      - Developing: development.md
-      - Deploying: deployment.md
   - Change log: changelog.md
