diff --git a/.gitignore b/.gitignore index ee3892e..1321e07 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,7 @@ -charts/ +_site +.sass-cache +.jekyll-cache +.jekyll-metadata +vendor +Gemfile +Gemfile.lock diff --git a/404.md b/404.md new file mode 100644 index 0000000..6950a96 --- /dev/null +++ b/404.md @@ -0,0 +1,4 @@ +## 404 + +**Page not found :(** +The requested page could not be found. diff --git a/README.md b/README.md index 687c09c..286a472 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ -# Yellow Stack - ## Charts Usage [Helm](https://helm.sh) must be installed to use the charts. Please refer to @@ -7,7 +5,9 @@ Helm's [documentation](https://helm.sh/docs) to get started. Once Helm has been set up correctly, add the repo as follows: - helm repo add yellow-stack https://layer-3.github.io/stack +```sh +helm repo add yellow-stack https://layer-3.github.io/stack +``` If you had already added this repo earlier, run `helm repo update` to retrieve the latest versions of the packages. You can then run `helm search repo diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..9c8f39b --- /dev/null +++ b/_config.yml @@ -0,0 +1,23 @@ +title: Yellow Stack +description: >- # this means to ignore newlines until "baseurl:" + Write an awesome description for your new site here. You can edit this + line in _config.yml. It will appear in your document head meta (for + Google search results) and in your feed.xml site description. +twitter_username: Yellow +github_username: layer-3 + +defaults: + - scope: + path: "" + values: + layout: "default" + +lsi: false +safe: true +incremental: false +highlighter: rouge +gist: + noscript: false +kramdown: + math_engine: mathjax + syntax_highlighter: rouge diff --git a/_data/docs.yml b/_data/docs.yml new file mode 100644 index 0000000..2052b5b --- /dev/null +++ b/_data/docs.yml @@ -0,0 +1,2 @@ +- title: Docs + url: /docs diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..a55167f --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,7 @@ + + + + + + + diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..f77005c --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,15 @@ +{% include head.html %} + + {{ content }} + + Data: + {{ data.docs | inspect }} + + {%- if data.docs.size > 0 -%} +

Navigation

+ {% for doc in site.data.docs %} +
  • {{ doc.title }}
  • + {% endfor %} + {%- endif -%} + + diff --git a/assets/favicon.ico b/assets/favicon.ico new file mode 100644 index 0000000..bc162e6 Binary files /dev/null and b/assets/favicon.ico differ diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..f6f7b48 --- /dev/null +++ b/docs/README.md @@ -0,0 +1 @@ +## Docs