summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/partials.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/partials.php b/lib/partials.php
index 2a33bd4..e9b2263 100644
--- a/lib/partials.php
+++ b/lib/partials.php
@@ -4,15 +4,20 @@ include_once $_SERVER['DOCUMENT_ROOT'] . '/../config.php';
function html_big_navbar()
{
echo '' ?>
- <section class="column justify-center align-center navbar">
+ <section class="column justify-center align-center gap-8 navbar">
<div class="column justify-center grow">
<a href="/">
<h1><img src="/static/img/brand/big.webp" alt="<?= INSTANCE_NAME ?>"></h1>
</a>
</div>
- <div class="row justify-center">
-
+ <div class="row gap-8 justify-center">
+ <a href="/">
+ <button>Home</button>
+ </a>
+ <a href="/uploaders.php">
+ <button>Uploaders</button>
+ </a>
</div>
</section>
<?php ;