diff options
Diffstat (limited to 'lib/partials.php')
| -rw-r--r-- | lib/partials.php | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/lib/partials.php b/lib/partials.php index 493b469..1e0fd96 100644 --- a/lib/partials.php +++ b/lib/partials.php @@ -5,12 +5,17 @@ function render_header() { echo '' ?> <header> - <div class="banner"> - <h1><?= INSTANCE_NAME ?></h1> - </div> - <div class="links"> - <a href="/">Home</a> - </div> + <img src="/favicon.ico" width="20" height="20" /> + <p><?= INSTANCE_NAME ?></p> </header> <?php ; +} + +function render_tabs() +{ + echo '' ?> + <tabs> + <a href="/">Home</a> + </tabs> + <?php ; }
\ No newline at end of file |
