Changes to be committed:

modified:   README.md
    new file:   beloit/menu.png
    new file:   clay/menu.png
    new file:   docker.sh
    new file:   docker/Dockerfile
    new file:   docker/entrypoint.sh
    new file:   index.html
    new file:   setup.sh
    new file:   st_marys/menu.png
    new file:   startup.sh
This commit is contained in:
2026-01-21 18:44:55 -06:00
parent 0843a5f07c
commit 0a92807bdd
10 changed files with 114 additions and 0 deletions

29
index.html Normal file
View File

@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>kiosk-menu</title>
<style>
/* Ensure the media fills the entire screen without scrollbars */
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow: hidden;
background-color: black; /* Prevents white flash during load */
}
img {
width: 100vw;
height: 100vh;
display: block;
object-fit: cover;
}
</style>
</head>
<body>
<img src="*LOCATION/menu.png" alt="Menu Image">
</body>
</html>