config loading

This commit is contained in:
2024-05-28 16:43:25 +02:00
parent bae9cf8d53
commit d51d857b88
5 changed files with 71 additions and 39 deletions
+27 -9
View File
@@ -1,19 +1,37 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tooloop Kiosk Browser</title>
<style>
* {
font-family: system-ui, sans-serif;
font-weight: lighter;
}
html,
body {
background-color: black;
display: flex;
height: 100%;
width: 100%;
align-items: center;
justify-content: center;
flex-direction: column;
}
h1, p {
color: darkslateblue;
margin: 0.25em;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
<p>
We are using Node.js <span id="node-version"></span>,
Chromium <span id="chrome-version"></span>,
and Electron <span id="electron-version"></span>.
</p>
<h1>Tooloop Kiosk Browser</h1>
<p>www.tooloop.de</p>
</body>
</html>