Monorepo for Aesthetic.Computer aesthetic.computer
at main 24 lines 880 B view raw
1<!-- Serves aesthetic.computer an environment with no internet. --> 2<!-- Run a static http server on the public folder... or just try opening it? --> 3<!doctype html> 4<html> 5 6<head> 7 <meta charset="utf-8" /> 8 <title>Aesthetic Computer</title> 9 <!-- <link rel="icon" href="${icon}" type="image/png" /> --> 10 <!-- <link rel="manifest" href="/manifest.json"> --> 11 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> 12 <!-- <meta name="description" content="${encode(desc)}" /> --> 13 <script src="aesthetic.computer/boot.mjs" type="module" defer></script> 14 <link rel="stylesheet" href="aesthetic.computer/style.css" /> 15</head> 16 17<body class="native-cursor"> 18 <div id="console" class="hidden">booting...</div> 19 <script> 20 if (window.self !== window.top) document.body.classList.add("embed"); 21 </script> 22</body> 23 24</html>