forked from blakadder/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
esp32.html
27 lines (24 loc) · 826 Bytes
/
esp32.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
---
layout: default
title: ESP32 Based Devices
---
<h2>{{ page.title }}</h2>
<!-- ###################################################################### -->
<table width="80%">
<tbody>
{% assign devices = site.templates | where_exp: "devices", "devices.template32 != nil" | sort_natural: 'title' %}
{% for template in devices limit: 100 %}
{% include tablerow_standard.html %}
{% endfor %}
</tbody>
</table>
<h2>ESP32-C3 Based Devices</h2>
<!-- ###################################################################### -->
<table width="80%">
<tbody>
{% assign devices = site.templates | where_exp: "devices", "devices.templatec3 != nil" | sort_natural: 'title' %}
{% for template in devices limit: 100 %}
{% include tablerow_standard.html %}
{% endfor %}
</tbody>
</table>