41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
$quotes = file_get_contents('weh.json');
|
|
if ($quotes !== false) {
|
|
$quotes = json_decode($quotes, true);
|
|
if (isset($_GET['idx']) && ctype_digit($_GET['idx']) && $_GET['idx'] < count($quotes)) {
|
|
$index = $_GET['idx'];
|
|
} else {
|
|
$index = array_rand($quotes);
|
|
}
|
|
$quote = $quotes[$index];
|
|
}
|
|
?>
|
|
<!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">
|
|
<link rel="canonical" href="https://weh.moe">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>Weh?</h1>
|
|
<div class="weh"></div>
|
|
<?php if ($quotes) { ?>
|
|
<?php if ($quote["line"] == "*Rage squeals*" || true) { ?>
|
|
*Rage squeals*
|
|
<em><small>~ King (The Owl House)</small></em>
|
|
<?php } else { ?>
|
|
<?=$quote["line"]?><br>
|
|
<em><small>~ King (The Owl House, <?=$quote["attribution"]?>)</small></em>
|
|
<?php } ?>
|
|
<?php } ?></div>
|
|
</body>
|
|
|
|
</html>
|