diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ccbfadb --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +site/ \ No newline at end of file diff --git a/README.md b/README.md deleted file mode 100644 index dd874eb..0000000 --- a/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# docs -Documentation site diff --git a/docs/about.md b/docs/about.md new file mode 100644 index 0000000..ca34214 --- /dev/null +++ b/docs/about.md @@ -0,0 +1 @@ +#Hello \ No newline at end of file diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..e0e724c --- /dev/null +++ b/docs/index.md @@ -0,0 +1,7 @@ +# Overview + +More content will be uploaded soon. + +## Test + +More content \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..2462610 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,14 @@ +site_name: Dark Water Documentation +pages: +- Overview: index.md +- About: about.md +theme: readthedocs +repo_name: 'GitHub' +repo_url: "https://github.com/darkwaterfoundation/docs" +extra: + palette: + primary: 'blue grey' + accent: 'light blue' + author: + github: 'darkwaterfoundation' + twitter: 'darkwaterio' \ No newline at end of file