-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
38 lines (35 loc) · 894 Bytes
/
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
<?php
/**
* @file index.php
* Display overview of all existing entries
*
* uses datatables https://www.datatables.net/
*/
$lib = 'datatables';
require_once("includes/header.php");
?>
<div class="container">
<p>
This registry describes data sources for scientometric information.
It is maintained by the ROSI project. <a href="about.php">Read more</a>.
</p>
<div class="alert alert-warning">
This is a work in progress. You are invited to help filling the registry!
Contact us to get write access: rosi.project(at)tib.eu.
</div>
<table id="table_id" class="display">
<thead>
<tr>
<th></th>
<th>Name</th>
<th>Description</th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
<script type="text/javascript" src="js/datatable.js"></script>
</div>
<?php
require_once("includes/footer.php");
?>