mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-03 01:28:58 +00:00

* Sets front matter defaults * Removes default front matter from section templates/pages * Removes default front matter from addon pages * Removes default front matter from integration pages * Removes default front matter from posts * Removes default front matter from docs pages * Removes default front matter from other pages * Fixes blog category pages
17 lines
330 B
Markdown
17 lines
330 B
Markdown
---
|
|
title: "Glossary"
|
|
description: "Home Assistant's Glossary."
|
|
---
|
|
|
|
{% 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>
|