You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.8 KiB
PHTML
55 lines
2.8 KiB
PHTML
<header class="header">
|
|
<div class="container container--no-gap">
|
|
<nav class="nav row row--align-center">
|
|
|
|
<div class="col col-2">
|
|
<a href="/" class="site-title site-title--header">aNetwork</a>
|
|
</div>
|
|
|
|
<div class="col col-fill">
|
|
<ul class="nav-list">
|
|
<li class="nav-list__item"><a href="/about">About</a></li>
|
|
<li class="nav-list__item nav-list__item--has-dropdown"><a href="#servers">Servers</a>
|
|
@if(!empty($servers))
|
|
<ul class="nav-list__item__dropdown">
|
|
<div class="nav-list__item__dropdown__content">
|
|
@foreach($servers as $server) <!-- Loop servers to add to header -->
|
|
@if(!empty($server['servers'])) <!-- Only add if the server type has related servers -->
|
|
<li class="nav-list__item__dropdown__item"><a href="#servers" data-tabs-button data-tabs-group="servers" data-tabs-id="{{ strtolower($server['type']) }}">{{ $server['type'] }}</a></li>
|
|
@endif
|
|
@endforeach
|
|
</div>
|
|
</ul>
|
|
@endif
|
|
</li>
|
|
<li class="nav-list__item"><a href="/simple">Simple floor</a></li>
|
|
<li class="nav-list__item"><a href="#faq">FAQs</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="col col-3 tar">
|
|
<ul class="inline-list">
|
|
<!-- <li><a href="/discord">Discord<i class="iconoir iconoir-discord" width="16" height="16" style="margin-left:12px; font-size:24px;"></i></a></li> -->
|
|
<li>
|
|
@auth
|
|
<a class="rounded-md px-3 py-2 text-black transition hover:text-black/70 focus:outline-none dark:text-white dark:hover:text-white/80"
|
|
href="/dashboard">
|
|
Dashboard
|
|
</a>
|
|
@else
|
|
<a class="rounded-md px-3 py-2 text-black transition hover:text-black/70 focus:outline-none dark:text-white dark:hover:text-white/80"
|
|
href="/auth/login">
|
|
Log in
|
|
</a>
|
|
<a class="rounded-md px-3 py-2 text-black transition hover:text-black/70 focus:outline-none dark:text-white dark:hover:text-white/80"
|
|
href="/auth/register">
|
|
Register
|
|
</a>
|
|
@endif
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</header>
|