Initial glossary (#3568)

* Initial glossary

* Allow markdown in the description
This commit is contained in:
Fabian Affolter 2017-10-09 19:18:39 +02:00 committed by GitHub
parent 53185d3a80
commit 82dea44109
3 changed files with 39 additions and 1 deletions

View file

@ -0,0 +1,20 @@
---
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' %}
<ul>
{% for entry in entries %}
<li>
<b>{{ entry.topic }}</b>: {{ entry.description | markdownify }}
</li>
{% endfor %}
</ul>