29 lines
No EOL
801 B
PHP
29 lines
No EOL
801 B
PHP
<!DOCTYPE html>
|
|
<html lang="sv">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="css/style.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<?php
|
|
$dir = 'pages/*.html';
|
|
$files = glob($dir);
|
|
|
|
if(empty($files)) {
|
|
die("Error: No HTML files found in /pages directory");
|
|
}
|
|
|
|
$randomPage = $files[array_rand($files)];
|
|
|
|
echo file_get_contents($randomPage);
|
|
?>
|
|
</main>
|
|
<footer>
|
|
<a href="/info.php">Vad är detta för nåt?</a>
|
|
<div class="footer-text">
|
|
vBytes | vbytes.se
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|