-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="css/viewer.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="materialize-src/js/bin/materialize.min.js"></script>
<link href="materialize-src/sass/materialize.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta charset="UTF-8">
<title>IIIF Archive deck</title>
</head>
<body>
<header>
<nav>
<div class="nav-wrapper">
<ul class="left nav-menu">
<li><a href="#modal-open-curation" class="waves-effect waves-light btn btn-flat modal-trigger">Open Curation<i
class="material-icons right">description</i></a></li>
</ul>
<a href="/" class="title">IIIF Archive Deck</a>
<ul class="right nav-menu">
<li><a href="#modal-open" class="waves-effect waves-light btn btn-flat modal-trigger">Open Manifest<i
class="material-icons right">open_in_browser</i></a></li>
<li><a href="#modal-search" class="waves-effect waves-light btn modal-trigger">Search Manifest<i
class="material-icons right">search</i></a></li>
</ul>
</div>
</nav>
</header>
<div id="contents">
<div id="viewers">
<!-- <div is="iiif-manga-viewer" manifest="http://www2.dhii.jp/nijl/NIJL0001/SA4-0026/manifest.json"></div>-->
<!-- <div is="iiif-manga-viewer" manifest="http://www2.dhii.jp/nijl/NIJL0008/NA4-0644/manifest.json"></div>-->
<iiif-manga-viewer manifest="https://www.dl.ndl.go.jp/api/iiif/2542527/manifest.json"></iiif-manga-viewer>
<iiif-manga-viewer manifest="https://www.dl.ndl.go.jp/api/iiif/2532216/manifest.json"></iiif-manga-viewer>
<curation-viewer></curation-viewer>
</div>
<search-modal id="modal-search"></search-modal>
<open-modal id="modal-open"></open-modal>
<open-curation-modal id="modal-open-curation"></open-curation-modal>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/sortablejs@latest/Sortable.min.js" type="module"></script>
<script src="js/thread.js" type="module"></script>
<script src="js/IIIFMangaViewer.js" type="module"></script>
</html>