diff --git a/_config.yml b/_config.yml index c5ffa3e2a7d..aaff623f774 100644 --- a/_config.yml +++ b/_config.yml @@ -74,6 +74,8 @@ collections: output: true ecosystem: output: true + details: + output: true topics: output: true diff --git a/source/_topics/database.markdown b/source/_details/database.markdown similarity index 98% rename from source/_topics/database.markdown rename to source/_details/database.markdown index eed1326201d..a4c7ec00acb 100644 --- a/source/_topics/database.markdown +++ b/source/_details/database.markdown @@ -1,9 +1,9 @@ --- layout: page -title: "Home Assistant Database" +title: "Database" description: "Details about the database which Home Assistant is using." date: 2016-10-10 10:00 -sidebar: true +sidebar: false comments: false sharing: true footer: true diff --git a/source/_topics/updater_details.markdown b/source/_details/updater.markdown similarity index 98% rename from source/_topics/updater_details.markdown rename to source/_details/updater.markdown index de2fa26044e..ccf13eb8116 100644 --- a/source/_topics/updater_details.markdown +++ b/source/_details/updater.markdown @@ -1,13 +1,12 @@ --- layout: page -title: "Details about the updater" +title: "Updater" description: "Details what the updater component is reporting about your Home Assistant instance." date: 2016-10-22 08:00 sidebar: false comments: false sharing: true footer: true -ha_category: Infrastructure --- Starting with 0.31 the [updater component](/components/updater/) sends an optional report about Home Assistant instance. diff --git a/source/_topics/webserver_details.markdown b/source/_details/webserver.markdown similarity index 95% rename from source/_topics/webserver_details.markdown rename to source/_details/webserver.markdown index 18ba4a3c152..f9e2f4e0031 100644 --- a/source/_topics/webserver_details.markdown +++ b/source/_details/webserver.markdown @@ -1,13 +1,12 @@ --- layout: page -title: "Details about the web server" +title: "Web server" description: "Use nmap to scan your Home Assistant instance." date: 2016-10-06 08:00 sidebar: false comments: false sharing: true footer: true -ha_category: Infrastructure --- It was only a matter of time till the first queries for tools like [https://www.shodan.io](https://www.shodan.io/search?query=Home+Assistant) to search for Home Assistant instances showed up. diff --git a/source/_includes/asides/getting_started_navigation.html b/source/_includes/asides/getting_started_navigation.html index 672f5816d56..0ab006db506 100644 --- a/source/_includes/asides/getting_started_navigation.html +++ b/source/_includes/asides/getting_started_navigation.html @@ -65,6 +65,7 @@
  • {% active_link {{site_root}}/topics/ Advanced Topics %}
  • +
  • {% active_link {{site_root}}/details/ Details %}
  • {% active_link /getting-started/android/ Add to Android Homescreen %}
  • {% active_link /getting-started/browsers/ Browser Compatibility List %}
  • diff --git a/source/details/index.markdown b/source/details/index.markdown new file mode 100644 index 00000000000..ff2fccd135e --- /dev/null +++ b/source/details/index.markdown @@ -0,0 +1,20 @@ +--- +layout: page +title: "Details Topics" +description: "Details about Home Assistant." +date: 2016-10-20 12:00 -0800 +sidebar: false +comments: false +sharing: true +footer: true +regenerate: true +hide_github_edit: true +--- + +This page is a collection of further details about Home Assistant. + +{% assign details = site.details | sort: 'title' %} + +{% for detail in details %} +* [{{detail.title}}]({{detail.url}}) +{% endfor %}