-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.inc
More file actions
24 lines (24 loc) · 878 Bytes
/
header.inc
File metadata and controls
24 lines (24 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!-- Header -->
<header>
<nav id="header-nav">
<div class="logo">
<a href="index.php">
<img src="images/logo-removebg-preview.png" alt="CloudLabs logo" width="80" height="80" /></a>
</div>
<ul>
<!-- Highlight selected page based on $activePage variable -->
<li><a href="./index.php" <?php
if ($activePage == 'home') {
echo 'id="selected-page"';}?>>Home</a></li>
<li><a href="./jobs.php" <?php
if ($activePage == 'jobs') {
echo 'id="selected-page"';}?>>Jobs</a></li>
<li <?php
if ($activePage == 'apply') {
echo 'id="selected-page"';}?>><a href="./apply.php">Apply</a></li>
<li><a href="./about.php" <?php
if ($activePage == 'about') {
echo 'id="selected-page"';}?>>About</a></li>
</ul>
</nav>
</header>