-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="index.css" />
<meta charset="utf-8" />
<title>Narrativity Graphs</title>
<link rel="icon" href="img/favicon.ico" sizes="any"><!-- 32×32 -->
<link rel="icon" href="img/logo.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png"><!-- 180×180 -->
<link rel="manifest" href="img/manifest.webmanifest">
</head>
<body>
<div id="topLevelContainer">
<div class="headline">
<img src="img/logo.svg" alt="Logo">
<h1>Narrativity Graphs</h1>
</div>
<div id="app"></div>
<div class="footer">
<div><a href="https://github.com/uhh-lt/narrativity-frontend" target="_blank">Github</a></div>
<div><a href="https://www.inf.uni-hamburg.de/en/inst/ab/lt/publications/2021-vauth-hatzel-chr.pdf" target="_blank">Paper</a></div>
<div><a href="dist/licenses.txt" target="_blank">Open Source Licenses</a></div>
</div>
</div>
<script type="module" src="src/main.tsx"></script>
</body>
</html>