diff options
| author | ilotterytea <iltsu@alright.party> | 2025-06-02 01:59:00 +0400 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-06-02 01:59:00 +0400 |
| commit | 2f2b152860de21c12adebafc25a3b5d75cdf3853 (patch) | |
| tree | a874829ab1cb3ea8c2ffcd32ac191610700690e6 /lib | |
| parent | 352ad8ee0ec3ecb676eda574331f8674e93f391d (diff) | |
feat: info for file uploader software
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/partials.php | 11 |
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 ; |
