-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
74 lines (62 loc) · 1.46 KB
/
template.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
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Dependency Frost</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: #000000;
height: 100vh;
}
p {
color: #ffffff;
}
.title {
color: #ffffff;
}
.canvas-holder {
width: 100%;
text-align:center;
margin: auto;
}
</style>
</head>
<body>
<section class="section">
<div class="columns is-mobile">
<div class="column is-8 is-offset-2">
<h1 class="title has-text-centered">
Dependency Frost
</h1>
<h2 class="title is-5 has-text-centered">
Can you escape all vulnerable open source dependencies in this game?
</h2>
<div class="canvas-holder">
<canvas id="game"></canvas>
</div>
<p class="has-text-centered mt-6">
source code:
<a
href="https://github.com/lirantal/Dependency-Frost">
https://github.com/lirantal/Dependency-Frost
</a>
</p>
<p class="has-text-centered">
by
<a href="https://twitter.com/liran_tal">
Liran Tal
</a> 🥑
</p>
</div>
</div>
</section>
{{kaboom}}
</body>
</html>