Skip to content

Commit

Permalink
aa
Browse files Browse the repository at this point in the history
  • Loading branch information
gcormier committed Dec 22, 2023
1 parent 31cb581 commit 12fc26f
Showing 1 changed file with 34 additions and 6 deletions.
40 changes: 34 additions & 6 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
---
layout: default
title: Home
---
<esp-web-install-button manifest="firmware/manifest.json"></esp-web-install-button>
<h1>{{ "Hello World!" | downcase }}</h1>

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<style>
@media (prefers-color-scheme: dark) {
body {
background-color: #1a1a1a;
color: #ffffff;
}
}

@media (prefers-color-scheme: light) {
body {
background-color: #ffffff;
color: #000000;
}
}
</style>

<script
type="module"
src="https://unpkg.com/esp-web-tools@9/dist/web/install-button.js?module"
></script>

</head>
<body>
<esp-web-install-button manifest="firmware/manifest.json"></esp-web-install-button>
<h1>{{ "Hello World!" | downcase }}</h1>
</body>
</html>

0 comments on commit 12fc26f

Please sign in to comment.