forked from blakadder/zigbee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zigate.html
25 lines (24 loc) · 862 Bytes
/
zigate.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
layout: default
title: ZiGate
---
<h2>{{ page.title }}</h2>
How to set up <a href="https://zigate.fr/" target="_blank">ZiGate</a>.
<!-- ###################################################################### -->
{% assign gateway = site.zigbee | where: "compatible", "zigate" %}
{% assign types = gateway | group_by: 'category' | sort_natural: "name" %}
{% for type in types %}
<h3> {{ type.name | capitalize }} </h3>
<table>
<tbody>
{% assign vendor = type.items | group_by: 'vendor' %}
{% assign vendors = vendor | sort_natural: 'name' %}
{% for type in vendors %}
{% assign type_sorted = type.items | sort_natural: 'title' %}
{% for template in type_sorted %}
{% include tablerow_nocompatibility.html %}
{% endfor %}
{% endfor %}
</tbody>
</table>
{% endfor %}