-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
55 lines (50 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Wikidata Dump</title>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/nav.css">
<link rel="stylesheet" href="style/cards.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="https://www.thm.de/_thm/logos/thm.ico">
</head>
<body>
<header class="nav">
<img class="logo" src="./assets/FB06_MNI_Logo.svg" alt="Logo of the THM department MNI">
</header>
<main class="container">
<div class="card wiki">
<h1>Wikidata Dump</h1>
<p>A Wikidata dump of the neo4j database. <b>Be aware</b> it has a size of <b>~115GB</b>. </p>
<p>It's SHA1 checksum is <code>305e53cc3cb7fdba2cea08d69fe6b354bb78eaab</code>.</p>
<div class="wiki-disclaimer">
<small>If you're running neo4j Desktop follow the instructions to create a database instance at: </small>
<small>
<a href="https://neo4j.com/docs/desktop-manual/current/operations/create-from-dump/" target="_blank">
https://neo4j.com/docs/desktop-manual/current/operations/create-from-dump/
</a>
</small>
<small class="mt-1">If you're running neo4j either directly on your machine or via docker use the neo4j-admin database load command.</small>
</div>
</div>
<a class="card neo4j" href="https://wikidata.mni.thm.de:7473/" target="_blank">
<h1>neo4j Browser</h1>
<p>neo4j graph database browser including the Wikidata dump.</p>
</a>
</main>
<footer>
<div class="footer-links">
<a href="https://www.thm.de/site/impressum.html" target="_blank">
<span>Legal Notice</span>
</a>
<span>|</span>
<a href="https://github.com/CyberFei/D-DIN-PRO" target="_blank"><span>Font</span></a>
</div>
</footer>
<script>
document.querySelector(".wiki").addEventListener("click", () => window.open("https://wikidata.mni.thm.de/neo4j.dump"));
document.querySelector(".wiki-disclaimer").addEventListener("click", (e) => e.stopPropagation());
</script>
</body>
</html>