-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpreflashed-stand.html
More file actions
23 lines (20 loc) · 841 Bytes
/
preflashed-stand.html
File metadata and controls
23 lines (20 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: default
title: Devices with Factory Flashed Tasmota by Standard
---
<h2>{{ page.title }}</h2>
<h4>All devices listed come with some version of Tasmota already flashed. They can be upgraded with the newest version.</h4>
<!-- ###################################################################### -->
{% assign category = site.templates | where: "flash", "preflashed" %}
{% assign standard_group = category | map: 'standard' | join: ',' | split: ',' | uniq | sort_natural %}
{% for std in standard_group %}
<h3><a id="{{ std }}"></a>{{ std | upcase }}</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 %}