-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (33 loc) · 1.43 KB
/
Copy pathindex.html
File metadata and controls
41 lines (33 loc) · 1.43 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Wüf</title>
<meta name="description" content="Talk to your dog with Ember!">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta property="og:title" content="Wüf">
<meta property="og:description" content="Talk to your dog with Ember!">
<meta property="og:site_name" content="Wüf">
<meta property="og:url" content="https://wuf.plus/">
<meta property="og:image" content="https://i.imgur.com/KVqNjgO.png">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@shipshapecode">
<link rel="manifest" href="/manifest.webmanifest">
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-icon-180x180.png">
{{content-for "head"}}
<link integrity="" rel="stylesheet" href="/@embroider/virtual/vendor.css">
{{content-for "head-footer"}}
</head>
<body>
{{content-for "body"}}
<script src="/@embroider/virtual/vendor.js"></script>
<script type="module">
import Application from './app/app';
import environment from './app/config/environment';
Application.create(environment.APP);
</script>
{{content-for "body-footer"}}
</body>
</html>