-
Notifications
You must be signed in to change notification settings - Fork 1
/
serial.php
47 lines (36 loc) · 1.08 KB
/
serial.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
<!DOCTYPE html>
<?php
$objectPID = $_REQUEST['id'];
?>
<html>
<head>
<!-- page rendered as Serial -->
<meta charset="utf-8">
<title>Serials | Digital Collections | WSULS</title>
<meta name="description" content="">
<meta name="viewport" content="initial-scale=1">
<!-- load site-wide dependencies -->
<?php include('inc/site_wide_depends.php'); ?>
<!-- page specific dependencies -->
<script src="js/serial.js"></script>
<style>
.toc > li {
margin: 0;
}
</style>
</head>
<body>
<?php include('inc/struct_data.php'); ?>
<?php include('inc/header.php'); ?>
<div class="container">
<div id="serial-nav" class="facets volume-view"></div>
<div class="main-container">
<div id="serial-root-content"></div>
</div>
</div>
<?php include('inc/footer.php'); ?>
<script type="text/javascript">
launch("<?php echo $objectPID; ?>");
</script>
</body>
</html>