forked from GoodbyteCo/Letterboxd-Film-Frequency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (54 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
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" type="image/svg+xml" href="./favicon.svg">
<link rel="icon" type="image/png" href="./favicon.png">
<link rel="apple-touch-icon" sizes="130x130" href="./apple-touch-icon.png">
<meta name="theme-color" content="#191e25">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@GoodbyteStudio">
<meta name="twitter:creator" content="@GoodbyteStudio">
<meta name="twitter:title" content="Film Frequency: a contribution graph for Letterboxd">
<meta name="twitter:description" content="See your logged Letterboxd films as a Github-like frequency graph">
<meta name="twitter:image" content="https://www.filmfrequency.com/socialmediabanner.png">
<meta property="og:url" content="https://www.filmfrequency.com">
<meta property="og:type" content="website">
<meta property="og:description" content="See your logged Letterboxd films as a Github-like frequency graph">
<meta property="og:image" content=https://www.filmfrequency.com/socialmediabanner.png> <meta property="og:title"
content="Film Frequency: a contribution graph for Letterboxd">
<title>Film Frequency: a contribution graph for Letterboxd</title>
</head>
<body>
<noscript>
<p>
<a href="https://github.com/GoodbyteCo/Letterboxd-Film-Frequency">Film Frequency</a>
requires Javascript to run. Please enable it to use the site. See:
<em><a href="https://enable-javascript.com">how to turn on Javascript</a></em>.
</p>
<style>
body,
html {
margin: 0;
background: #191e25;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
p {
color: #adbed0;
margin: 120px auto;
max-width: 52ch;
padding: 0 30px;
}
a {
color: #01e054;
}
</style>
</noscript>
<main id="app"></main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>