From 2330e177760f61041cb5f8c84644bf369cbdd56f Mon Sep 17 00:00:00 2001 From: TheFrenchGhosty Date: Mon, 10 Jul 2023 15:37:11 +0200 Subject: [PATCH] Rework the homepage and the nav completely --- docs/index.md | 23 ++++++++++++++++------- mkdocs.yml | 15 ++++++++------- 2 files changed, 24 insertions(+), 14 deletions(-) diff --git a/docs/index.md b/docs/index.md index 32a2c93..675781a 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,29 +1,38 @@ ## General -- [Public Invidious Instances](./instances.md) +- [Invidious Instances](./instances.md) - [Applications](./applications.md) -- [Always proxy videos through server](./proxy-videos.md) +- [Export YouTube subscriptions](./export-youtube-subscriptions.md) +- [Frequently Asked Questions](./faq.md) + +## For Advanced Users + - [Preferences](./preferences.md) -- [Geoblocking, available quality and DASH](./geoblocking.md) - [Using search filters](./search-filters.md) - [List of URL parameters](./url-parameters.md) +- [Always proxy videos through server](./proxy-videos.md) +- [Geoblocking, available quality and DASH](./geoblocking.md) - [How to deal with uMatrix](./umatrix.md) +- [Redirector Setup](./redirector-setup.md) ## For Administrators - [Installation](./installation.md) - [Configuration](./configuration.md) -- [Apache2 Virtual Host with Reverse Proxy](./apache2.md) - [Nginx Reverse Proxy Configuration](./nginx.md) - [Caddy Reverse Proxy Configuration](./caddy.md) +- [Apache2 Virtual Host with Reverse Proxy](./apache2.md) - [Database Information and Maintenance](./db-maintenance.md) +- [Takedown Notices](./takedown.md) +- [Hide Invidious instance behind proxy server (for escaping DMCA requests)](./hide-instance-behind-proxy-server.md) - [Issues with CAPTCHA](./captcha-bug.md) - [How to setup Anti-Captcha](./anti-captcha.md) - [How to reset a user's password](./reset-pass.md) +- [Known Exception in log](./known-exception.md) ## For Developers - [API](./api.md) - * [Common object types used across the API](./api/common_types.md) - * ["Channels" endpoint](./api/channels_endpoint.md) - * [Authenticated Endpoints](./api/authenticated-endpoints.md) +- [Common object types used across the API](./api/common_types.md) +- ["Channels" endpoint](./api/channels_endpoint.md) +- [Authenticated Endpoints](./api/authenticated-endpoints.md) diff --git a/mkdocs.yml b/mkdocs.yml index ddf841b..35ca4f1 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -10,29 +10,30 @@ nav: - Home: 'index.md' - 'General': - 'instances.md' - - 'export-youtube-subscriptions.md' - - 'preferences.md' - 'applications.md' + - 'export-youtube-subscriptions.md' + - 'faq.md' + - 'For Advanced Users': + - 'preferences.md' - 'search-filters.md' - 'url-parameters.md' - 'proxy-videos.md' - 'geoblocking.md' - 'umatrix.md' - - 'known-exception.md' - - 'faq.md' - 'redirector-setup.md' - 'For Administrators': - 'installation.md' - 'configuration.md' - - 'apache2.md' - 'nginx.md' - 'caddy.md' + - 'apache2.md' - 'db-maintenance.md' - - 'captcha-bug.md' - - 'anti-captcha.md' - 'takedown.md' - 'hide-instance-behind-proxy-server.md' + - 'captcha-bug.md' + - 'anti-captcha.md' - 'reset-pass.md' + - 'known-exception.md' - 'For Developers': - 'api.md' - 'api/common_types.md'