-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (53 loc) · 2.54 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
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Jonathan Armoza, Bridget Moynihan, Anouk Lang">
<meta name="keywords" content="Edwin Morgan, Poet, Scottish, Scotland, Working from Scraps, Digital Humanities, University of Edinburgh">
<title>Morgan Scrapbooks Prototype - Book and Page Metadata View</title>
<!-- Remote CSS -->
<!-- <link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap/dist/css/bootstrap.min.css"/> -->
<!-- <link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.css"/> -->
<!-- Local CSS -->
<link type="text/css" rel="stylesheet" href="/src/lib/css/bootstrap.min.css"/>
<link type="text/css" rel="stylesheet" href="/src/lib/css/bootstrap-vue.css"/>
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway" />
<!-- No longer used -->
<!-- Chartist -->
<!-- <link type="text/css" rel="stylesheet" href="./node_modules/chartist/dist/chartist.min.css"> -->
<!-- D3 and D3 components -->
<!-- <script src="/src/d3/d3.js"></script>
<script src="/src/d3/d3.layout.cloud.js"></script>
<script src="/src/d3.wordcloud.js"></script> -->
<!-- <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet"> -->
<style>
@font-face {
font-family: ScotchRomanMT;
src: url("/src/assets/fonts/ScotchRomanMT.otf") format("opentype");
}
</style>
</head>
<body>
<div id="app"></div>
<!-- Remote JS -->
<!-- <script src="https://code.jquery.com/jquery-3.3.1.js"></script> -->
<!-- <script src="//unpkg.com/babel-polyfill@latest/dist/polyfill.min.js"></script> -->
<!-- <script src="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.js"></script> -->
<!-- <script src="https://www.gstatic.com/charts/loader.js"></script> -->
<!-- Local JS -->
<!-- jQuery -->
<script src="/src/lib/js/jquery-3.3.1.js"></script>
<!-- Babel -->
<script src="/src/lib/js/babel-polyfill.min.js"></script>
<!-- Bootstrap Vue -->
<script src="/src/lib/js/bootstrap-vue.js"></script>
<!-- Google Charts -->
<script src="/src/lib/js/google-charts-loader.js"></script>
<!-- No longer used -->
<!-- <script src="./node_modules/vue-chartkick/dist/vue-chartkick.js"></script> -->
<!-- <script src="./node_modules/chartist/dist/chartist.min.js"></script> -->
<!-- Main script -->
<script src="/dist/build.js"></script>
</body>
</html>