From 37d7ae8ee2fe2580cb7cfbae0828882ea0edb275 Mon Sep 17 00:00:00 2001 From: shrkey Date: Tue, 22 Mar 2016 23:31:17 +0000 Subject: [PATCH] Test docs site Nothing here --- .gitignore | 1 + README.md | 2 -- docs/about.md | 1 + docs/index.md | 7 +++++++ mkdocs.yml | 14 ++++++++++++++ 5 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 .gitignore delete mode 100644 README.md create mode 100644 docs/about.md create mode 100644 docs/index.md create mode 100644 mkdocs.yml 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