-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
24 lines (24 loc) · 1.42 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
<!doctype html>
<html lang="en" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/svg+xml" href="/rdfjs.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>RDF + JS = ❤</title>
<meta name="description" content="Which JavaScript library should you choose to work with Resource Description Framework (RDF)? This website helps to answer this question by describing, demoing and reviewing various JS-libraries that allow you to work with RDF."/>
<meta property="og:title" content="RDF + JS = ❤" />
<meta property="og:description" content="Which JavaScript library should you choose to work with Resource Description Framework (RDF)? This website helps to answer this question by describing, demoing and reviewing various JS-libraries that allow you to work with RDF." />
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="/rdfjs.png" />
<meta property="og:image:alt" content="Logo for the website (also logo for RDF/JS CG)" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:creator" content="@megoth" />
<link rel="stylesheet" href="/prism.css"/>
<script src="/prism.js" type="application/javascript"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>