-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav.php
More file actions
47 lines (46 loc) · 2.94 KB
/
nav.php
File metadata and controls
47 lines (46 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<nav class="navbar navbar-expand-lg" role="navigation" aria-label="Main">
<div class="container-fluid">
<a class="navbar-brand" href="<?= BASE_URL ?>"><strong>TARKYNATOR</strong></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link <?php if ($activePage == 'template') { echo 'active'; } ?>" id="homeNavLink" href="<?= BASE_URL ?>">Items</a>
</li>
<li class="nav-item">
<a class="nav-link <?php if ($activePage == 'achievements') { echo 'active'; } ?>" id="achievementsNavLink" href="<?= BASE_URL ?>/achievements">Achievements</a>
</li>
<li class="nav-item">
<a class="nav-link <?php if ($activePage == 'assorts') { echo 'active'; } ?>" id="assortsNavLink" href="<?= BASE_URL ?>/assorts">Assorts</a>
</li>
<li class="nav-item">
<a class="nav-link <?php if ($activePage == 'common-id') { echo 'active'; } ?>" id="commonIdNavLink" href="<?= BASE_URL ?>/common-id">Common IDs</a>
</li>
<li class="nav-item">
<a class="nav-link <?php if ($activePage == 'crafts') { echo 'active'; } ?>" id="craftsNavLink" href="<?= BASE_URL ?>/crafts">Crafts</a>
</li>
<li class="nav-item">
<a class="nav-link <?php if ($activePage == 'quests') { echo 'active'; } ?>" id="questsNavLink" href="<?= BASE_URL ?>/quests">Quests</a>
</li>
<li class="nav-item">
<a class="nav-link <?php if ($activePage == 'resources') { echo 'active'; } ?>" id="resourcesNavLink" href="<?= BASE_URL ?>/resources">Resources</a>
</li>
</ul>
<span class="navbar-text">
<!-- <a href="<?= BASE_URL ?>/custom-trader" class="btn btn-outline-info d-none d-lg-block"><i class="bi bi-tools"></i> Custom Trader</a> -->
<a href="<?= BASE_URL ?>/mongo-gen" class="btn btn-outline-info d-none d-lg-block"><i class="bi bi-stars"></i> ID Generator</a>
<div class="theme-selector">
<select id="theme-select" class="form-select form-select-sm" style="width: auto;">
<option value="eft">EFT Theme</option>
<option value="modern">Modern Theme</option>
<option value="hacker">Hacker Theme</option>
</select>
</div>
</span>
</div>
</div>
</nav>