Compare commits

...

2 commits

Author SHA1 Message Date
23038dce48
OpenGraph tags 2024-09-10 01:41:18 +01:00
1016df163a
"Nicely format the HTML" 2024-09-10 01:39:56 +01:00

19
weh.php
View file

@ -20,21 +20,24 @@ if ($quotes !== false) {
<link rel="stylesheet" href="weh.css">
<link rel="icon" type="image/x-icon" href="weh.ico">
<link rel="canonical" href="https://weh.moe">
<meta property="og:title" content="Can it, fangs!">
<meta property="og:description" content="You don't know diddly dang about squiddly squat!">
<meta property="og:image" content="/weh.png">
</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 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 } ?>
</div>
<?php } ?></div>
</body>
</html>