mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-09 10:26:52 +00:00
19 lines
450 B
Markdown
19 lines
450 B
Markdown
---
|
|
title: "Glossary"
|
|
description: "Home Assistant's Glossary."
|
|
---
|
|
|
|
{% assign entries = site.data.glossary | sort: 'term' %}
|
|
|
|
The glossary covers terms which are used around Home Assistant.
|
|
|
|
{% configuration_basic %}
|
|
|
|
{% for entry in entries %}
|
|
"{{ entry.term }}":
|
|
description: "{{ entry.definition }}
|
|
{% if entry.link %}<br />[Read more about: {{ entry.term }}]({{ entry.link }}){% endif %}"
|
|
{% endfor %}
|
|
|
|
{% endconfiguration_basic %}
|