Chris
004e38b3bb
All checks were successful
Build and push / Pulling repo on server (push) Successful in 20s
15 lines
764 B
HTML
15 lines
764 B
HTML
<header class="text-gray-600 body-font">
|
|
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
|
|
<a class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0">
|
|
<img class="h-8 w-auto" src="/imgs/dogstats-50.png" alt="">
|
|
<span class="ml-3 text-xl">Dogstats</span>
|
|
</a>
|
|
<nav class="md:ml-auto flex flex-wrap items-center text-base justify-center">
|
|
<?php foreach(getMenu() as $item) : ?>
|
|
<a href="/<?= $item['url'] ?>" hx-push-url="/<?= $item['url'] ?>" hx-get="/<?= $item['url'] ?>" hx-target="#main" class="mr-5 hover:text-gray-900"><i class="<?= $item['image'] ?>"></i> <?= $item['text'] ?></a>
|
|
<?php endforeach; ?>
|
|
</nav>
|
|
|
|
</div>
|
|
</header>
|
|
|