This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
86 lines (72 loc) · 3.35 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!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">
<title>OSC DataTables Template</title>
<?php
include('osc/services/drupal-auth.php');
include('include_in_head.html');
?>
</head>
<body>
<a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://dash.harvard.edu"><img height="40" alt="Harvard DASH logo" src="img/dash_logo.gif"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home <span class="sr-only">(current)</span></a></li>
<li><a href="//osc.hul.harvard.edu">About the OSC</a></li>
</ul>
<form id="global_search_form" class="navbar-form navbar-right" role="search">
<p class="help navbar-text navbar-right" tabindex="0" data-toggle="modal" data-target="#instructions" aria-label="search help" role="button">?</p>
<div class="form-group">
<input type="text" id="global_search" class="form-control" placeholder="Search" aria-label="Enter table search terms...">
</div>
<button id="global_search_submit" type="submit" class="btn btn-default">Search</button>
</form>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- IF not using a jumbotron, please give div#content a margin-top of 5px -->
<div id="content" tabindex="-1">
<div class="jumbotron">
<div class="container">
<h1>DataTables with Bootstrap</h1>
<p>A sample DataTable as used by the Harvard Library Office for Scholarly Communication</p>
<a href="http://github.com/rebeccacremona/datatables" class="btn btn-primary">Get the code</a>
</div>
</div>
<div class="loading">...loading...</div>
<!--
For a full-width table, set class="container-fluid"
For a fixed width container (width determined by Bootstrap, depending on viewport size), set class="container"
For wide tables, container-fluid is recommended.
-->
<div id="table_container" class="container">
</div>
</div>
<footer style="display:none">
<div>
<ul>
<li><a href="http://dash.harvard.edu">DASH</a></li>
<li><a href="http://osc.hul.harvard.edu/">Office for Scholarly Communication</a></li>
<li><a href="http://library.harvard.edu/">Harvard Library</a></li>
</ul>
</div>
</footer>
<?php include('include_in_foot.html') ?>
</body>
</html>