mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-08 12:08:58 +00:00
23 lines
423 B
Markdown
23 lines
423 B
Markdown
---
|
|
layout: page
|
|
title: "Glossary"
|
|
description: "Home Assistant's Glossary."
|
|
date: 2017-10-08 08:30
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
---
|
|
|
|
{% assign entries = site.data.glossary | sort: 'topic' %}
|
|
|
|
The glossary covers terms which are used around Home Assistant.
|
|
|
|
<ul>
|
|
{% for entry in entries %}
|
|
<li>
|
|
<b>{{ entry.topic }}</b>: {{ entry.description | markdownify }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|