-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (44 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="styles.css" rel="stylesheet">
<link href="loader.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<title>the FAIR extension</title>
</head>
<body>
<header class="toppane">
<img src="img/logo.png" class="center" alt="Logo">
</header>
<main class="container">
<section class="leftpane">
<div id="spinner" style="display: none;">
<img src="icons/load.gif" alt="Loading..." />
</div>
<div id="evaluation" class="boxed center2">🎓️ No evaluation yet</div>
<div id="score" class="center" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"></div>
</section>
<section class="rightpane">
<div id="find" class="boxed2 center3">🔍Findable</div>
<div id="access" class="boxed2 center3">📬Accessible</div>
<div id="inter" class="boxed2 center3">⚙️Interoperable</div>
<div id="reuse" class="boxed2 center3">♻️Reusable</div>
<ul class="doiList"></ul>
</section>
</main>
<footer>
<div class="w3-container">
<div class="w3-panel w3-pale-blue w3-leftbar w3-rightbar w3-border-blue">
<p>More info? Visit the<a href="https://github.com/MaastrichtU-Library/the-FAIR-extension">Github repo 😸</a></p>
<p><a href="https://github.com/MaastrichtU-Library/the-FAIR-extension/blob/main/disclaimer.md">Privacy Disclaimer</a> last update 24/10/22</p>
<p><a href="https://github.com/MaastrichtU-Library/the-FAIR-extension/releases/tag/Beta">the FAIR extension</a> v1.1.0 - beta</p>
<p>Copyright (c) 2023 Maastricht University Library</p>
</div>
</div>
</footer>
</body>
<script src="contentScript.js"></script>
<script src="popup.js"></script>
</html>