Franck Nijhof ebca3218c7
🔥Removes linkable_title everywhere (#9772)
* Automatically create linkable headers

* Visually improve position of linkable header chain icon

* Do not auto link  headers on homepage

* Remove linkable_title everywhere

* 🚑 Re-instante linkable_title plugin as NOOP
2019-07-04 19:08:27 +02:00

46 lines
1.4 KiB
HTML

---
layout: page
title: "Hass.io Add-ons"
description: "List of the built-in add-ons of Hass.io."
date: 2017-04-30 13:35
sidebar: true
comments: false
sharing: true
footer: true
regenerate: false
---
<p>Add-ons for Hass.io allow the user to extend the functionality around Home Assistant. This can be running an application that Home Assistant can integrate with (like an MQTT broker) or to share the configuration via Samba for easy editing from other computers. Add-ons can be configured via the Hass.io panel in Home Assistant.</p>
<p>
Check the Hass.io forums for <a href='https://community.home-assistant.io/tags/hassio-repository'>add-on repositories managed by the community</a>.
</p>
<p class='note'>
Add-ons are only available if you've used the Hass.io installer. If you installed Home Assistant using any other method then you cannot use add-ons (but you can achieve the same result manually).
</p>
{% assign addons = site.addons | sort: 'title' %}
<h3>Featured add-ons</h3>
<ul>
{% for addon in addons %}{% if addon.featured %}
<li>
<a href='{{ addon.url }}'>{{ addon.title }}</a><br>
{{ addon.description }}
</li>
{% endif %}{% endfor %}
</ul>
<h3>Other add-ons</h3>
<ul>
{% for addon in addons %}{% if addon.featured != true %}
<li>
<a href='{{ addon.url }}'>{{ addon.title }}</a><br>
{{ addon.description }}
</li>
{% endif %}{% endfor %}
</ul>