mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-03 09:38:59 +00:00

* Fix broken markdown link * Remove link to deleted cookbook page Co-authored-by: Klaas Schoute <klaas_schoute@hotmail.com>
1.3 KiB
1.3 KiB
title, description, sidebar, regenerate, hide_github_edit
title | description | sidebar | regenerate | hide_github_edit |
---|---|---|---|---|
Cookbook | Community maintained list of different ways to use Home Assistant. | false | true | true |
This is a community curated list of different ways to use Home Assistant. Most of these examples are using the automation integration.
A great place to find popular configurations is on this
GitHub search for repositories with the
home-assistant-config
topic.
{% assign cookbook = site.cookbook | sort: 'title' %} {% assign categories = cookbook | map: 'ha_category' | uniq | sort %} {% for category in categories %}
{{ category }}
{% if category == 'Automation Examples' %}
{% elsif category == 'Full configuration.yaml examples' %}
Some users keep a public scrubbed copy of their configuration.yaml
to learn from.
{% elsif category == '' %}
{% endif %}
{% for recipe in cookbook %} {% if recipe.ha_category == category %} {% if recipe.ha_external_link %}
- {{recipe.title}} {% else %}
- {{recipe.title}} {% endif %} {% endif %} {% endfor %} {% endfor %}