-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
78 lines (78 loc) · 3.55 KB
/
index.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!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">
<script src="//code.jquery.com/jquery-3.6.1.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/underscore@latest/underscore-umd-min.js"></script>
<!-- Twitter Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/bootstrap@latest/dist/css/bootstrap.min.css" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="//cdn.jsdelivr.net/npm/bootstrap@latest/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<!-- DataTables -->
<link rel="stylesheet" href="//cdn.datatables.net/1.12.1/css/dataTables.bootstrap5.min.css">
<script src="//cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js"></script>
<script src="//cdn.datatables.net/1.12.1/js/dataTables.bootstrap5.min.js"></script>
<!-- Book Aligner -->
<script src="js/book-aligner.js"></script>
<style type="text/css">
pre, .wrapped, code {
width: 99%;
white-space: pre-wrap; /* CSS 2.1 */
word-wrap: break-word; /* IE 5+ */
word-break: break-all
line-break: anywhere;
}
</style>
<title>Book Aligner</title>
</head>
<body>
<div class="container">
<div class="page-header">
<a href="https://github.com/ryanfb/book-aligner/" role="button" class="btn btn-secondary mt-3 float-end" target="_blank">View on GitHub</a>
<h1><a href=".">Book Aligner</a></h1>
<p>Find matching books for a given HathiTrust, Internet Archive, or Google Books URL.</p>
</div>
<form id="identifier_form">
<div class="row">
<div class="col-10 mt-2">
<div class="input-group">
<input class="form-control" type="text" id="identifier_input" name="identifier" autocomplete="off">
<input class="btn btn-primary" type="submit" value="Search Books">
</div>
</div>
<div class="col-2">
<img src="https://books.google.com/googlebooks/images/poweredby.png" style="padding-top: 1em;">
</div>
</div>
</form>
<br />
<div class="row">
<div class="col-xs-12">
<div id="results">
<div id="examples">
<p>Example supported URLs:</p>
<ul>
<li><code><span>https://archive.org/details/opvscvlaacademi03heyngoog</span></code></li>
<li><code><span>https://babel.hathitrust.org/cgi/pt?id=hvd.32044102854122</span></code></li>
<li><code><span>https://hdl.handle.net/2027/uc1.$b674056</span></code></li>
<li><code><span>https://catalog.hathitrust.org/Record/001057888</span></code></li>
<li><code><span>https://www.google.com/books/edition/_/xSIAAAAAYAAJ</span></code></li>
<li><code><span>https://books.google.com/books?id=qJnYgDwudQgC</span></code></li>
<li><code><span>https://play.google.com/store/books/details?id=qJnYgDwudQgC</span></code></li>
</ul>
<p><i>Backend data indexes last updated: 2019/02/19</i></p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12" id="loadingDiv" style="text-align:center">
<img src="https://cdnjs.cloudflare.com/ajax/libs/galleriffic/2.0.1/css/loader.gif"/>
</div>
</div>
</div>
</body>
</html>