-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>Kadge</title>
<meta name="keywords" content="kotlin, badge, kadge">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta property="og:description" content="Kotlin badge generator" />
<meta property="og:image" content="https://babedev.github.io/Kadge/meta.png" />
<meta property="og:image:secure_url" content="https://babedev.github.io/Kadge/meta.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="400" />
<meta property="og:image:height" content="400" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.4.0/css/bulma.min.css">
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="web/lib/kotlin.js"></script>
<script src="util.js"></script>
<style>
.upload-photo {
opacity: 0;
position: absolute;
z-index: -1;
}
.gone {
opacity: 0;
}
.template {
position: relative;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="web/kadge_main.js"></script>
</body>
</html>