From 44be882945852b63bef2f2d0906b6685c3873187 Mon Sep 17 00:00:00 2001 From: NucciTheBoss Date: Sun, 25 Dec 2022 21:29:11 -0500 Subject: [PATCH] bugfix: Fix documentation navigation --- docs/{home => }/index.md | 2 +- mkdocs.yml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) rename docs/{home => }/index.md (96%) diff --git a/docs/home/index.md b/docs/index.md similarity index 96% rename from docs/home/index.md rename to docs/index.md index 6962bb0..98c41d7 100644 --- a/docs/home/index.md +++ b/docs/index.md @@ -24,5 +24,5 @@ exa-scale high-performance computing cluster. It provides tools to work with pop for pushing or pulling artifacts, and ways to test code across multiple Linux distributions. It also enables you to simulate high-performance computing clusters to test software deployments and installation scripts. -If you are interested in learning more, then head on over to [installation](../user-guide/installation.md) page of this +If you are interested in learning more, then head on over to [installation](user-guide/installation.md) page of this documentation! \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 6e8e714..31e0af1 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,8 +1,10 @@ site_name: cleantest +site_url: https://nuccitheboss.github.io/cleantest/ site_description: | Documentation for cleantest - a testing framework for developers who need clean testing environments in a hurry. repo_name: NucciTheBoss/cleantest repo_url: https://github.com/NucciTheBoss/cleantest +edit_uri: blob/main/docs theme: name: material @@ -29,7 +31,7 @@ markdown_extensions: format: !!python/name:pymdownx.superfences.fence_code_format nav: - - Home: 'home/index.md' + - Home: 'index.md' - 'User Guide': - 'Installation': 'user-guide/installation.md' - 'Getting started': 'user-guide/getting-started.md'