]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blame - header.php
Fix another script path for plugins
[irc/unrealircd/unrealircd-webpanel.git] / header.php
CommitLineData
e98b5a51 1<!DOCTYPE html>
911a6472
BM
2<head>
3 <!-- Latest compiled and minified CSS -->
4<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css">
5
6<!-- jQuery library -->
7<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.1/dist/jquery.slim.min.js"></script>
8
9<!-- Popper JS -->
10<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
11
12<!-- Latest compiled JavaScript -->
13<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js"></script>
14
c88945a1 15<script src="js/unrealircd-admin.js"></script>
e98b5a51 16<title>UnrealIRCd Panel</title>
27efe895
BM
17<link rel="icon" type="image/x-icon" href="<?php echo BASE_URL; ?>img/favicon.ico">
18<link href="<?php echo BASE_URL; ?>css/unrealircd-admin.css" rel="stylesheet">
911a6472
BM
19</head>
20<body role="document">
4896fbb9
VP
21<div class="container-fluid">
22
5cc8ca4a
VP
23 <!-- Fixed navbar -->
24 <nav class="navbar navbar-expand-sm navbar-dark bg-dark fixed-top">
25 <ul class="nav navbar-nav">
27efe895 26 <a class="navbar-brand" href="index.php"><img src="<?php echo BASE_URL; ?>img/favicon.ico" height="25" width="25"> UnrealIRCd Admin Panel</a>
1e6ffd06 27<?php
d1d9caa9 28
27efe895
BM
29$active_page = false;
30/* Needs to be a separate step due to multiple matches */
31foreach($pages as $name=>$page)
32 if (str_ends_with($_SERVER['SCRIPT_FILENAME'], $page))
33 $active_page = $page;
34
1e6ffd06
BM
35foreach($pages as $name=>$page)
36{
96de0b9c 37 $class = "class=\"nav-item\"";
27efe895 38 if ($page == $active_page)
96de0b9c 39 $class = str_replace("\"nav-item\"", "\"nav-item active\"", $class);
5cc8ca4a 40
27efe895 41 echo " <li $class><a class=\"nav-link\" href=\"".BASE_URL.$page."\">$name</a></li> \n";
1e6ffd06 42}
1e6ffd06 43?>
4896fbb9 44
5cc8ca4a 45 </ul>
d843c1de 46 </nav><br>
e98b5a51 47</div>
911a6472
BM
48
49<div class="container-fluid" role="main">