-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
46 lines (42 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" sizes="64x64" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=0" />
<link rel="manifest" href="/site.webmanifest">
<!-- Primary Meta Tags -->
<title>LCARS (Library Computer Access/Retrieval System)</title>
<meta name="title" content="LCARS (Library Computer Access/Retrieval System)">
<meta name="description" content="A Star Trek-inspired LCARS interface that works on any monitor!">
<meta name="keywords" content="Star Trek, LCARS">
<meta name="author" content="Lou Huang">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://lcars.computer/">
<meta property="og:title" content="LCARS (Library Computer Access/Retrieval System)">
<meta property="og:description" content="A Star Trek-inspired LCARS interface that works on any monitor!">
<meta property="og:image" content="https://lcars.computer/preview.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://lcars.computer/">
<meta property="twitter:title" content="LCARS (Library Computer Access/Retrieval System)">
<meta property="twitter:description" content="A Star Trek-inspired LCARS interface that works on any monitor!">
<meta property="twitter:image" content="https://lcars.computer/preview.jpg">
<style>
/* Force iPad Safari from pinch-zooming or panning when touch actions are
performed on the screen, which deforms the look */
body {
touch-action: none;
}
</style>
</head>
<body>
<div id="app">
<router-view></router-view>
</div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script src="/vendor/perlin.js"></script>
<script type="module" src="/src/index.js"></script>
</body>
</html>