-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (52 loc) · 1.39 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
59
60
61
62
63
<!doctype html>
<html>
<head>
<title>Widget</title>
<meta charset=utf-8>
<meta name=viewport content="width=device-width,initial-scale=1">
<meta name=author content="Ivan Novikov">
<meta name=description content="A full-functioning Vue.js embeddable widget in HTML">
<meta name=robots content="index, follow">
<meta property="og:title" content="Widget by Ivan Novikov">
<meta property="og:description"
content="A full-functioning Vue.js embeddable widget in HTML">
<meta property=og:image:width content=1200>
<meta property=og:image:height content=630>
<meta property="og:image" content="assets/img/og.jpg" />
<link rel=icon type=image/png href="assets/img/favicon-96x96.png">
<!-- widget source css -->
<link href="assets/css/app.css" rel=stylesheet>
<style>
h2, h3, h4 {
margin-bottom: 0.5rem;
}
body, html {
height: auto;
}
body {
padding: 30px;
}
.logo-main {
width: 70%;
max-width: 500px;
max-height: 170px;
display: block;
margin: 0 auto;
}
vue-widget #app {
padding: 15px;
border: 1px #eaeaea solid;
border-radius: 3px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
</style>
</head>
<body>
<div class="container-fluid">
<p>😎 Here is embedded widget with a custom element 👇</p>
<vue-widget></vue-widget>
</div>
<!-- widget source js -->
<script src="assets/js/app.js"></script>
</body>
</html>