34034-vm/index.php
Flatlogic Bot 7c8f8f1be1 planets
2025-09-12 14:14:13 +00:00

29 lines
986 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Solar System</title>
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<div id="stats-container">
<div id="stats-buttons">
<button data-planet="mercury">Mercury</button>
<button data-planet="venus">Venus</button>
<button data-planet="earth">Earth</button>
<button data-planet="mars">Mars</button>
</div>
<div id="stats-info"></div>
</div>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.164.1/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.164.1/examples/jsm/"
}
}
</script>
<script type="module" src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>