-
-
Notifications
You must be signed in to change notification settings - Fork 641
Expand file tree
/
Copy pathlocks.html
More file actions
20 lines (19 loc) · 587 Bytes
/
locks.html
File metadata and controls
20 lines (19 loc) · 587 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
layout: default
title: Locks
---
<h2>{{ page.title }}</h2>
<!-- ###################################################################### -->
{% assign categories = site.zigbee | where: "category", "lock" %}
{% assign vendor = categories | group_by: 'vendor' %}
{% assign vendors = vendor | sort_natural: 'name' %}
<table>
<tbody>
{% for type in vendors %}
{% assign type_sorted = type.items | sort_natural: 'title' %}
{% for template in type_sorted %}
{% include tablerow.html %}
{% endfor %}
{% endfor %}
</tbody>
</table>