-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathbulb-socket.html
More file actions
22 lines (20 loc) · 707 Bytes
/
bulb-socket.html
File metadata and controls
22 lines (20 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: default
title: Light Bulbs by Socket
navigation: 20
---
<h2>{{ page.title }}</h2>
<!-- ###################################################################### -->
{% assign category = site.templates | where: "category", "bulb" %}
{% assign standard_group = category | map: 'standard' | join: ',' | split: ',' | uniq | sort_natural %}
{% for std in standard_group %}
<h3><a id="{{ std }}"></a>{{ std | upcase }} Socket</h3>
<table id="{{ std }}" width="80%">
<tbody>
{% assign grouptitlesorted = category | where: "standard" , std | sort_natural: "title" %}
{% for template in grouptitlesorted %}
{% include tablerow.html %}
{% endfor %}
</tbody>
</table>
{% endfor %}