35 lines
884 B
PHP
35 lines
884 B
PHP
<?php
|
|
$quotes = file_get_contents('weh.json');
|
|
if ($quotes !== false) {
|
|
$quotes = json_decode($quotes, true);
|
|
$quote = $quotes[array_rand($quotes)];
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Weh?</title>
|
|
<link rel="stylesheet" href="weh.css">
|
|
<link rel="icon" type="image/x-icon" href="weh.ico">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>Weh?</h1>
|
|
<div class="weh"></div>
|
|
<?php if ($quotes) { ?>
|
|
<?php if ($quote["line"] == "*Rage squeals*") { ?>
|
|
*Rage squeals*
|
|
<?php } else { ?>
|
|
<?=$quote["line"]?><br>
|
|
<em><small>~ King (The Owl House, <?=$quote["attribution"]?>)</small></em>
|
|
<?php } ?>
|
|
<?php } ?>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|