Files
skeleton/www/www.example.com/public/index.php
Worker Skeletton 9d798bab78 Rename example domains to generic scheme
Use example.com instead of domain.de/game references to make
the skeleton truly generic and not tied to any specific project.
2026-05-25 13:48:03 +02:00

17 lines
318 B
PHP

<?php
/**
* www.example.com — Hauptseite
*/
?>
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>www.example.com</title>
</head>
<body>
<h1>Willkommen</h1>
<p>Dies ist die Hauptseite.</p>
</body>
</html>