-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
42 lines (42 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Wordlem</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A Wordle clone playable in French or English.">
<meta name="theme-color" content="#ffffff">
<meta name="color-scheme" content="light dark">
<link rel="stylesheet" href="./public/icomoon/style.css">
<link rel="stylesheet" href="./styles.scss">
<link rel="stylesheet" href="./styles-dark.scss" media="(prefers-color-scheme: dark)">
<link rel="apple-touch-icon" href="./public/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="./public/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./public/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./public/favicon-16x16.png">
<link rel="manifest" href="./public/wordlem.webmanifest">
<meta itemprop="image" content="https://n1k0.github.io/wordlem/screenshots/card.png">
<meta name="theme-color" content="#333333">
<meta name="apple-mobile-web-app-title" content="Wordlem">
<meta name="application-name" content="Wordlem">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@n1k0">
<meta name="twitter:creator" content="@n1k0">
<meta name="twitter:title" content="Wordlem">
<meta name="twitter:description" content="A Wordle clone playable in French or English.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://n1k0.github.io/wordlem/screenshots/card.png">
<meta property="og:type" content="website">
<meta property="og:title" content="Wordlem">
<meta property="og:description" content="A Wordle clone playable in French or English.">
<meta property="og:locale" content="en" />
<meta property="og:url" content="https://n1k0.github.io/wordlem/">
<meta property="og:site_name" content="Wordlem">
<meta property="og:image" content="https://n1k0.github.io/wordlem/screenshots/card.png">
<meta property="og:author" content="Nicolas Perriault">
</head>
<body>
<div id="app"></div>
<script type="module" src="./index.js"></script>
</body>
</html>