drnk.me/templates/pages/homepage.php
2023-12-02 22:13:02 +01:00

17 lines
376 B
PHP

<?php
require(__DIR__ . "/../layout/top.php");
?>
<div class="page-header">
<h1>drnk.me</h1>
<h2>URL Shortener</h2>
</div>
<img class="bottle" src="/static/img/bottle.png" alt="picture of a vile with a tag 'Drnk Me'" />
<div class="center-panel">
<?php require(__DIR__ . "/components/url-form.php"); ?>
</div>
<?php
require(__DIR__ . "/../layout/bottom.php");