-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (36 loc) · 1.63 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
58
<!doctype html>
<html>
<head prefix="og: http://ogp.me/ns#">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<!-- facebook open graph -->
<meta property="og:title" content="">
<meta property="og:type" content="website">
<meta property="og:description" content="">
<meta property="og:image:type" content="image/png">
<meta property="og:image" content="">
<meta property="og:url" content="">
<title>Hello World - webpack & Vue.js</title>
<meta name="description" content="Hello world with webpack & Vue.js">
<link rel="canonical" href="">
<link rel="shortcut icon" href="">
<!-- manifest -->
<link rel="manifest" href="">
<!-- ios icon -->
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="">
<!-- css -->
<style type="text/css">
/* inline css */
</style>
<link rel="stylesheet" type="text/css" href="">
<!-- google fonts -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700">
</head>
<body>
<div id="app"></div>
<!-- javascript -->
<script src="dist/bundle.js"></script>
</body>
</html>