68 lines
2.2 KiB
PHP
68 lines
2.2 KiB
PHP
<?php
|
|
$currentDate = new DateTime();
|
|
$currentYear = $currentDate->format('Y');
|
|
$startDate = new DateTime("$currentYear-11-10");
|
|
$endDate = new DateTime(($currentYear + 1) . '-03-01');
|
|
$christmas = ($currentDate > $startDate && $currentDate < $endDate);
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/res/css/master.css">
|
|
<title>~floppy</title>
|
|
<?php if ($christmas) { ?>
|
|
<script type="text/javascript" src="/res/js/snowstorm.js"></script>
|
|
<?php } ?>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="page-container">
|
|
<div class="grid">
|
|
<div>
|
|
<h1>~floppy</h1>
|
|
</div>
|
|
<div>
|
|
<p>
|
|
<em>Certified PHP User</em><br>
|
|
"My life is a living nightmare!"
|
|
</p>
|
|
</div>
|
|
<?php if ($christmas) { ?>
|
|
<div><img src="/res/images/profile-christmas.jpg" class="profile-image"></div>
|
|
<?php } else { ?>
|
|
<div><img src="/res/images/profile.png" class="profile-image"></div>
|
|
<?php } ?>
|
|
<div>
|
|
<ul>
|
|
<li>19 y/o, British</li>
|
|
<li>Theatre Technician</li>
|
|
<li>"Web Developer"</li>
|
|
<li>Part-time NixOS user</li>
|
|
<li>Self-taught programmer</li>
|
|
<li>Somewhat a weather nerd</li>
|
|
<li>Built & designed <a href="https://frzn.dev">frzn.dev</a></li>
|
|
</ul>
|
|
<p class="social-heading">Social:</p>
|
|
<ul class="social">
|
|
<li><strong>Forgejo:</strong> <a href="https://git.frzn.dev/fwoppydwisk/">@fwoppydwisk@git.frzn.dev</a></li>
|
|
<li><strong>E-mail:</strong> <a href="mailto:floppydisk@hyprcat.net">floppydisk@hyprcat.net</a></li>
|
|
<li><strong>Fedi:</strong> <a rel="me"
|
|
href="https://furry.engineer/@fwoppydwisk">@fwoppydwisk@furry.engineer</a>
|
|
</li>
|
|
<li><strong>Discord:</strong> @fwoppydwisk</li>
|
|
</ul>
|
|
</div>
|
|
<div><strong>Websites:</strong>
|
|
<a href="https://www.diskfloppy.me">diskfloppy.me</a> /
|
|
<a href="http://www.hyprcat.net">hyprcat.net</a> /
|
|
<a href="https://weh.moe">weh.moe</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|