-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanuscripts.html
50 lines (44 loc) · 1.7 KB
/
manuscripts.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
---
---
<!DOCTYPE html>
<html lang="en-US">
<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>Manuscripts—Italian Renaissance Paleography</title>
<link rel="stylesheet" href='{{ "/www/css/style.css" | relative_url }}'>
</head>
<body>
<header>header</header>
<h3 id="mss">Manuscripts</h3>
<div class="container reverse">
<div id="Documents" class="grow wrap">list loading</div>
<div class="sidebar">
<h3>Refine Results <button role="button" id="queryReset">clear all</button></h3>
<progress value="107" max="107">107 of 107</progress>
<input id="query" type="text" placeholder="type to filter">
<section id="facetFilter"></section>
</div>
</div>
<script src="script/utils.js"></script>
<script>
const page_FIELDS = [
"Alternative Title", "Date Issued", "Is Part Of",
"Date Issued", "Author(s) or Contributor(s)"
// script, decoration, physical description
]
const page_FILTERS = {
"Type of Resource": "resource-type", Genre: "genre", Language: "language",
Script: "script", "Reading Difficulty": "readability", Topic: "topic",
Region: "region", "Time Period": "period", Repository: "repository"
}
const page_SEARCH = [
"Title", "Physical Description", "Note(s)", "Region",
"Topic", "Subject", "Repository", "Call Number", "Is Part Of"
]
loadManuscripts("../iiif-cache/manuscripts.json", Documents)
</script>
<footer>footer</footer>
</body>
</html>