From a634ef12b385ca6f600cdae8c3e7b621d11bc96a Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 17 Aug 2019 09:24:32 +0200 Subject: [PATCH] :books: :sparkles: Adds Edge page to site --- build-site.sh | 3 +++ mkdocs.yml | 1 + 2 files changed, 4 insertions(+) diff --git a/build-site.sh b/build-site.sh index eb1906b6..22e98dbe 100755 --- a/build-site.sh +++ b/build-site.sh @@ -17,6 +17,9 @@ mkdir -p docs # Install requirements pip install -r requirements.txt +# Download Edge page +curl https://raw.githubusercontent.com/hassio-addons/repository-edge/master/README.md --output docs/edge.md + # Get the pages into the docs folder ln -sf ../README.md docs/index.md ln -sf ../LICENSE.md docs/license.md diff --git a/mkdocs.yml b/mkdocs.yml index 826a11f3..2d12f7ac 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -64,6 +64,7 @@ markdown_extensions: # The pages to serve pages: - "Our Add-ons": "index.md" + - "Edge Add-ons": "edge.md" - "Contributing": "contributing.md" - "Code of Conduct": "code-of-conduct.md" - "License": "license.md"