forked from blakadder/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eu.html
70 lines (63 loc) · 1.68 KB
/
eu.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
layout: default
---
<h3> Plugs/Sockets</h3>
<table id="Devices" width="80%">
<thead>
<tr>
<th>Name</th>
<th>Image</th>
<th>Type</th>
</tr>
<thead>
<tbody>
{% assign plug_eu = site.templates | where:'standard', 'eu' | where:'category', 'plug'%}
{% for template in plug_eu %}
<tr>
<td><b><a href="{{site.baseurl}}{{ template.url }}">{{ template.name | truncate: 30 }}</a></b></td>
<td align="center"><img src="{{ template.image }}" alt="{{ template.name }}" height="70"></td>
<td>{{ template.standard | upcase }} {{ template.type | upcase }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<h3>Lights</h3>
<table id="Devices" width="80%">
<thead>
<tr>
<th>Name</th>
<th>Image</th>
<th>Type</th>
</tr>
<thead>
<tbody>
{% assign light_eu = site.templates | where:'standard', 'eu' | where:'category', 'light'%}
{% for template in light_eu %}
<tr>
<td><b><a href="{{site.baseurl}}{{ template.url }}">{{ template.name | truncate: 30 }}</a></b></td>
<td align="center"><img src="{{ template.image }}" alt="{{ template.name }}" height="70"></td>
<td>{{ template.standard | upcase }} {{ template.type | upcase }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<h3>Switches/Dimmers</h3>
<table id="Devices" width="80%">
<thead>
<tr>
<th>Name</th>
<th>Image</th>
<th>Type</th>
</tr>
<thead>
<tbody>
{% assign switch_eu = site.templates | where:'standard', 'eu' | where:'category', 'switch'%}
{% for template in switch_eu %}
<tr>
<td><b><a href="{{site.baseurl}}{{ template.url }}">{{ template.name | truncate: 30 }}</a></b></td>
<td align="center"><img src="{{ template.image }}" alt="{{ template.name }}" height="70"></td>
<td>{{ template.standard | upcase }} {{ template.type | upcase }}</td>
</tr>
{% endfor %}
</tbody>
</table>