Use example.com instead of domain.de/game references to make the skeleton truly generic and not tied to any specific project.
17 lines
300 B
PHP
17 lines
300 B
PHP
<?php
|
|
/**
|
|
* app.example.com — Applikation
|
|
*/
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>app.example.com</title>
|
|
</head>
|
|
<body>
|
|
<h1>App</h1>
|
|
<p>Applikation.</p>
|
|
</body>
|
|
</html>
|