forked from hbunke/BibsOnGitHub
-
Notifications
You must be signed in to change notification settings - Fork 1
/
libraries-gitlab.html
56 lines (50 loc) · 3.14 KB
/
libraries-gitlab.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.13.1/css/jquery.dataTables.css">
<script type="text/javascript" language="javascript" src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.13.1/js/jquery.dataTables.js"></script>
<script type="text/javascript" class="init">
$(document).ready( function () {
$('#table_id').DataTable();
} );
</script>
<style>
body {
font-family: Tahoma, Verdana, sans-serif;
margin: 30px;
}
</style>
</head>
<body>
<h2>Libraries on GitLab</h2>
<table id="table_id" class="display">
<thead>
<tr>
<th>Country</th>
<th>City</th>
<th>Organisation</th>
<th>Repositories</th>
</tr>
</thead>
<tbody id="myTable">
<tr><td>Australia</td><td>Canberra</td><td><a href="https://gitlab.com/nla">National Library of Australia</a></td><td>0</td></tr>
<tr><td>Canada</td><td>Vancouver (BC)</td><td><a href="https://gitlab.com/BCLibCoop">BC Libraries Cooperative</a></td><td>0</td></tr>
<tr><td>Czech Republic</td><td>Prague</td><td><a href="https://gitlab.com/techlib">National Library of Technology</a></td><td>0</td></tr>
<tr><td>Germany</td><td>Berlin</td><td><a href="https://gitlab.com/tuub">Universitätsbibliothek Technische Universität Berlin</a></td><td>2</td></tr>
<tr><td>Germany</td><td>Göttingen</td><td><a href="https://gitlab.com/gbv">Gemeinsamer Bibliotheksverbund (GBV Göttingen)</a></td><td>0</td></tr>
<tr><td>Germany</td><td>Hannover</td><td><a href="https://gitlab.com/TIBHannover">Technische Informationsbibliothek (TIB)</a></td><td>20</td></tr>
<tr><td>India</td><td>Kolkata</td><td><a href="https://gitlab.com/NVLI">National Virtual Library of India</a></td><td>0</td></tr>
<tr><td>Norway</td><td>Bergen</td><td><a href="https://gitlab.com/ubbdst">University of Bergen Library</a></td><td>1</td></tr>
<tr><td>Norway</td><td>Oslo</td><td><a href="https://gitlab.com/uio-library">University of Oslo Library</a></td><td>6</td></tr>
<tr><td>Switzerland</td><td>Basel</td><td><a href="https://gitlab.com/swissbib">Information services for Swiss university libraries and Swiss National Library</a></td><td>20</td></tr>
<tr><td>US</td><td>Ann Arbor (MI)</td><td><a href="https://gitlab.com/aadl">Ann Arbor District Library</a></td><td>1</td></tr>
<tr><td>US</td><td>Evanston (IL)</td><td><a href="https://gitlab.com/nulib">Northwestern University Libraries</a></td><td>0</td></tr>
<tr><td>US</td><td>New York (NY)</td><td><a href="https://gitlab.com/nypl">New York Public Library</a></td><td>0</td></tr>
<tr><td>US</td><td>Princeton (NJ)</td><td><a href="https://gitlab.com/pulibrary">Princeton University Library</a></td><td>2</td></tr>
<tr><td>US</td><td>San Francisco / Oakland (CA)</td><td><a href="https://gitlab.com/cca">California College of the Arts</a></td><td>0</td></tr>
<tr><td>US</td><td>Sleepy Hollow (NY)</td><td><a href="https://gitlab.com/RockefellerArchiveCenter">Rockefeller Archive Center</a></td><td>0</td></tr>
</tbody>
</table>
</body>