-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·43 lines (39 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/sherpatool.js"></script>
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
<!-- kube stylesheet -->
<link rel="stylesheet" type="text/css" href="css/kube101/css/kube.css" />
<!-- local stylesheet -->
<link rel="stylesheet" href="css/sherpatool.css" type="text/css">
</head>
<?php
if (!empty($_REQUEST['author_id'])) {
//get author_id
$author_id = $_REQUEST['author_id'];
}
else {
$author_id = "null";
}
?>
<body>
<div id="header">
<div class="container row">
<div class="half">
<img src="images/library_system_w_v2.png"/>
<a href="." style="text-decoration:none; color:black;"><h3>Sherpa Romeo Self-Archiving Tool</h3></a>
</div>
<div id="nav" class="half">
<ul class="inline-list">
<li><a href=".">home</a></li>
<li><a href="citations.php?author_id=<?php echo $author_id; ?>">add citations</a></li>
<li><a href="report.php?author_id=<?php echo $author_id; ?>">report view / edit</a></li>
</br>
<li id="current_author">You are working on <em><?php echo getAuthorName($author_id); ?>'s</em> report</li>
</ul>
</div>
</div>
</div>