This repository has been archived by the owner on Aug 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
header.php
50 lines (50 loc) · 2.11 KB
/
header.php
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
48
49
50
<?php require_once 'config.php'; ?>
<!DOCTYPE html>
<html>
<head>
<title>Network Security | IT Ladkrabang OpenHouse 2013</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link href="<?php echo $base; ?>assets/css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="<?php echo $base; ?>">Network Security</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Web <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="<?php echo $base; ?>web/01">Web - 01</a></li>
<li><a href="<?php echo $base; ?>web/02">Web - 02</a></li>
<li><a href="<?php echo $base; ?>web/03">Web - 03</a></li>
<li><a href="<?php echo $base; ?>web/04">Web - 04</a></li>
<li><a href="<?php echo $base; ?>web/05">Web - 05</a></li>
<li><a href="<?php echo $base; ?>web/06">Web - 06</a></li>
<li><a href="<?php echo $base; ?>web/07">Web - 07</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Network <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="<?php echo $base; ?>network/01">Network - 01</a></li>
<li><a href="<?php echo $base; ?>network/02">Network - 02</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Programming <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="<?php echo $base; ?>programming/01">Programming - 01</a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="<?php echo $base; ?>score">Score</a></li>
<li><a href="<?php echo $base; ?>about.php">About</a></li>
</ul>
</div>
</div>
</div>