-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
42 lines (40 loc) · 2.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="/favicon.svg">
<link rel="fallback icon" href="/favicon.ico">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#0088ff">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<meta name="theme-color" content="#1f2448">
<!--
manifest.json provides metadata used when your web app is added to the
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
-->
<link rel="manifest" href="/manifest.json">
<!-- Primary Meta Tags -->
<title>DraCor – Drama Corpora Project</title>
<meta name="title" content="DraCor – Drama Corpora Project">
<meta name="description" content="DraCor is not a website. DraCor is a showcase for the concept of Programmable Corpora. It revolves around an API that provides data extracted from TEI-encoded corpora. This website – dracor.org – uses this API to showcase some of the extractable information. Some data can be downloaded through the web interface. The more powerful, direct access point is the documented API.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://dracor.org">
<meta property="og:title" content="DraCor – Drama Corpora Project">
<meta property="og:description" content="DraCor is not a website. DraCor is a showcase for the concept of Programmable Corpora. It revolves around an API that provides data extracted from TEI-encoded corpora. This website – dracor.org – uses this API to showcase some of the extractable information. Some data can be downloaded through the web interface. The more powerful, direct access point is the documented API.">
<meta property="og:image" content="/website.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://dracor.org">
<meta property="twitter:title" content="DraCor – Drama Corpora Project">
<meta property="twitter:description" content="DraCor is not a website. DraCor is a showcase for the concept of Programmable Corpora. It revolves around an API that provides data extracted from TEI-encoded corpora. This website – dracor.org – uses this API to showcase some of the extractable information. Some data can be downloaded through the web interface. The more powerful, direct access point is the documented API.">
<meta property="twitter:image" content="/website.png">
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>