-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (73 loc) · 2.69 KB
/
index.html
File metadata and controls
75 lines (73 loc) · 2.69 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="./js/jquery-3.7.1.js"></script>
<script src="./js/jquery-ui.js"></script>
<script src="./js/papaparse.min.js"></script>
<script type="module" src="./js/selected-publications.js"></script>
<script src="./js/datatables.min.js"></script>
<link href="./css/jquery-ui.css" rel="stylesheet" />
<link href="./css/selected-publications.css" rel="stylesheet" />
<link href="./css/dataTables.min.css" rel="stylesheet" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
<style>
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
</style>
<title>SP Test</title>
</head>
<body class="container">
<div class="selected-publications">
<h2 class="selected-publications__heading">Selected Publications</h2>
<div class="custom-search">
<input
class="custom-search__input"
placeholder="Search faculty name..."
/>
<button
class="custom-search__button fa fa-search"
aria-label="Search faculty name"
></button>
</div>
<div class="faculty-select">
<table id="faculty-table" class="row-border"></table>
</div>
<div class="selected-publications__page">
<div class="faculty-info">
<div class="faculty-info__image">
<img alt="Portrait of faculty" />
</div>
<div class="faculty-info__text">
<h3 class="faculty-info__name"></h3>
<p class="faculty-info__title"></p>
</div>
<div class="faculty-info__buttons">
<a class="faculty-info__profile-button" role="button"> Profile </a>
<a class="faculty-info__cv-button" role="button">CV</a>
</div>
</div>
<div class="works-info">
<table id="works-table" class="row-border"></table>
</div>
</div>
<div class="selected-publications__loading">
<img
src="https://www.bc.edu/content/dam/bc1/schools/law/js/library/publication-lists/loading.gif"
/>
</div>
<a
class="library-credit"
href="https://www.bc.edu/content/bc-web/schools/law/sites/students/library.html"
>
<img
src="https://www.bc.edu/content/dam/bc1/schools/law/js/library/publication-lists/boston-college-law-library.png"
alt="This application was built by the staff of the Boston College Law Library"
/>
</a>
</div>
</body>
</html>