mirror of
https://github.com/home-assistant/frontend.git
synced 2026-02-24 03:35:38 +00:00
66 lines
1.8 KiB
Plaintext
66 lines
1.8 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Home Assistant</title>
|
|
<%= renderTemplate("_header.html.template") %>
|
|
<%= renderTemplate("_style_base.html.template") %>
|
|
<style>
|
|
html {
|
|
background-color: var(--primary-background-color, #fafafa);
|
|
color: var(--primary-text-color, #212121);
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
html {
|
|
background-color: var(--primary-background-color, #111111);
|
|
color: var(--primary-text-color, #e1e1e1);
|
|
}
|
|
}
|
|
body {
|
|
height: auto;
|
|
padding: 32px 0;
|
|
}
|
|
.content {
|
|
max-width: 560px;
|
|
margin: 0 auto;
|
|
padding: 0 16px;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.header img {
|
|
height: 56px;
|
|
width: 56px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body id="particles">
|
|
<div class="content">
|
|
<div class="header">
|
|
<img src="/static/icons/favicon-192x192.png" alt="Home Assistant" />
|
|
</div>
|
|
<ha-onboarding></ha-onboarding>
|
|
</div>
|
|
<%= renderTemplate("_js_base.html.template") %>
|
|
<%= renderTemplate("_preload_roboto.html.template") %>
|
|
<script crossorigin="use-credentials">
|
|
// Safari 12 and below does not have a compliant ES2015 implementation of template literals, so we ship ES5
|
|
if (!isS11_12) {
|
|
<% for (const entry of latestEntryJS) { %>
|
|
import("<%= entry %>");
|
|
<% } %>
|
|
window.latestJS = true;
|
|
window.stepsPromise = fetch("/api/onboarding", {
|
|
credentials: "same-origin",
|
|
});
|
|
}
|
|
</script>
|
|
<%= renderTemplate("_script_load_es5.html.template") %>
|
|
</body>
|
|
</html>
|