24 lines
744 B
HTML
24 lines
744 B
HTML
|
|
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
|
<title>LAMINAX Windower</title>
|
||
|
|
<link rel="stylesheet" href="style.css" />
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<noscript>The Laminax OS project needs javascript. Yes even the original terminal version needs it.</noscript>
|
||
|
|
<div id="desktop"></div>
|
||
|
|
<div id="background-layer" class="background-layer-windower"></div>
|
||
|
|
<script src="script.js"></script>
|
||
|
|
<!-- Load the shell -->
|
||
|
|
<script src="shell.js"></script>
|
||
|
|
<script>
|
||
|
|
window.addEventListener("DOMContentLoaded",shell.init);
|
||
|
|
</script>
|
||
|
|
<!-- Load OPTIONAL stuff -->
|
||
|
|
<script src="immersion.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|