forked from blakadder/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
br.html
38 lines (36 loc) · 1.18 KB
/
br.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
26
27
28
29
30
31
32
33
34
35
36
37
38
---
layout: default
title: BR Devices
navigation: 9
---
<h2>{{ page.title }}</h2>
<!-- ###################################################################### -->
{% assign standard = site.templates | where: "standard", "br" | sort_natural: 'title' %}
{% assign types = standard | group_by: 'type' | sort: 'name' %}
{% for type in types %}
<h3> {{ type.name }} </h3>
<table id="{{ type.name }}" width="80%">
<tbody>
{% assign type_sorted = type.items | sort_natural: 'title' %}
{% for template in type_sorted %}
{% include tablerow.html %}
{% endfor %}
</tbody>
</table>
{% endfor %}
<hr>
<h2>Global Standard</h2>
<!-- ###################################################################### -->
{% assign standard = site.templates | where: "standard", "global" | sort_natural: 'title' %}
{% assign types = standard | group_by: 'type' | sort: 'name' %}
{% for type in types %}
<h3> {{ type.name }} </h3>
<table id="{{ type.name }}" width="80%">
<tbody>
{% assign type_sorted = type.items | sort_natural: 'title' %}
{% for template in type_sorted %}
{% include tablerow.html %}
{% endfor %}
</tbody>
</table>
{% endfor %}