-
Notifications
You must be signed in to change notification settings - Fork 1
/
staff.php
executable file
·38 lines (31 loc) · 1.19 KB
/
staff.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="img/favicon.ico" />
<title>HM Record: Staff Name</title>
<link href='https://fonts.googleapis.com/css?family=Crimson+Text:400,700,400italic,700italic|Lato:400,300,700,400italic,300italic' rel='stylesheet' type='text/css'>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="css/general.css" rel="stylesheet">
<link href="css/search.css" rel="stylesheet">
</head>
<body>
<?php include 'include/navbar.php'; ?>
<div class="container article">
<h2 id="name"></h2>
<h4 id="position"></h4>
<hr />
<div id="articleBox"></div>
</div>
<?php include 'include/footer.php'; ?>
<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="js/general.js"></script>
<script src="js/backend.js"></script>
<script src="js/staff.js"></script>
</body>
</html>