Hass.io tweaks

This commit is contained in:
Paulus Schoutsen 2017-07-23 14:36:03 -07:00
parent f5bc6517a6
commit e464238e69
9 changed files with 50 additions and 22 deletions

View file

@ -12,17 +12,30 @@ regenerate: true
<p>Add-ons for Hass.io allows 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>
{% assign addons = site.addons | sort: 'title' %}
<h3>{% linkable_title Featured add-ons %}</h3>
<ul>
{% for addon in addons %}
{% for addon in addons %}{% if addon.featured %}
<li>
<a href='{{ addon.url }}'>{{ addon.title }}</a><br>
{{ addon.description }}
</li>
{% endfor %}
{% endif %}{% endfor %}
</ul>
<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>
<h3>{% linkable_title 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>