forked from jonathanadams/esphome-configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1.3 KB
/
index.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
---
layout: home
title: Welcome
---
<h1>ESPHome Device Configuration Repository</h1>
<p>
This website is a repository of device configuration templates and setup guides for devices running <a href="https://esphome.io">ESPHome</a> firmware.
</p>
<p>
The goal is to document all devices capable of running the firmware along with a basic configuration yaml that can be easily copied and uploaded which restores the device back to its original functionality. Additionaly, more advanced configuration of devices could also be documented.
</p>
{% assign counter = 0 %}{% for item in site.devices %}{% assign counter=counter | plus:1 %}{% endfor %}
<p>
There are currently <strong>{{ counter }} devices</strong> documented in the repository.
</p>
<h2>Recently Added Devices</h2>
{% assign devices = site.devices | sort: "date-published" | reverse %}
<ul>
{% for device in devices limit:10 %}
<li>
<a href="{{ device.url }}">{{ device.title }}</a>
</li>
{% endfor %}
</ul>
<h2>Contributing</h2>
<p>
This repository relies on the community to keep it up-to-date and accurate. If you identify and errors or find a device that is not added please consider contributing.
</p>
<a href="/adding-devices" class="btn btn-purple mr-2">Adding Devices</a>
<a href="/editing-devices" class="btn btn-purple mr-2">Editing Devices</a>