forked from blakadder/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.html
29 lines (28 loc) · 970 Bytes
/
global.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
---
layout: default
---
<b><a href="https://github.com/blakadder/templates/new/master/_templates">Add new device</a></b> Requires GitHub account! Copy contents of <a href="https://raw.githubusercontent.com/blakadder/templates/master/new.markdown">this file</a>
<br>or use a <a href="https://goo.gl/forms/uuL38XuveEQp1Vfw2">Google Form</a>
<br>
The site is WIP. Working on device filters according to electric standard or type!
<br>
<br>
<table id="Devices" width="80%">
<thead>
<tr>
<th>Name</th>
<th>Image</th>
<th>Type</th>
</tr>
<thead>
<tbody>
{% assign standard_global = site.templates | where:'standard', 'global' %}
{% for template in standard_global %}
<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>