]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blame - header.php
Mention that UnrealIRCd 6.0.6-git is recommended
[irc/unrealircd/unrealircd-webpanel.git] / header.php
CommitLineData
e98b5a51
BM
1<!DOCTYPE html>
2<title>UnrealIRCd Panel</title>
3<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
4<link href="css/unrealircd-admin.css" rel="stylesheet">
5<body class="body-for-sticky">
6<div id="headerContainer">
7b1ba98c 7<h2><a href="index.php">UnrealIRCd <small>Administration Panel</small></a></h2></div>
e98b5a51
BM
8<script src="js/unrealircd-admin.js" defer></script>
9<div class="topnav">
55fd88eb 10
1e6ffd06
BM
11<?php
12foreach($pages as $name=>$page)
13{
55fd88eb
VP
14 $active = '';
15 if (str_ends_with($_SERVER['SCRIPT_FILENAME'], $page))
16 {
17 $active = "class=\"active\" ";
18 }
19 echo "<a ".$active."href=\"$page\">$name</a>\n";
1e6ffd06 20}
90dc8f2b 21
1e6ffd06 22?>
e98b5a51 23</div>