forked from fl0zone/template-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (39 loc) · 1.93 KB
/
index.html
File metadata and controls
45 lines (39 loc) · 1.93 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
42
43
44
45
<!DOCTYPE html>
<head>
<meta content="width=device-width, initial-scale=1" name="viewport">
<link rel="icon" href="/static/favicon.png">
<link href="static/styles.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script>
</head>
<body>
<div class="flares">
<img src="static/images/flare-top.png" loading="lazy" sizes="(max-width: 1920px) 100vw, 1920px"
srcset="flare-top-500.png 500w, static/images/flare-top-800.png 800w, static/images/flare-top-1080.png 1080w, static/images/flare-top.png 1920w"
alt="" class="flares-top">
<img src="static/images/flare-right.png" loading="lazy" sizes="(max-width: 1622px) 100vw, 1622px"
srcset="static/images/flare-right-500.png 500w, static/images/flare-right-800.png 800w, static/images/flare-right-1080.png 1080w, static/images/flare-right.png 1622w"
alt="" class="new-flare-nav top-right hide-mobile">
<img src="static/images/flare-left.png" loading="lazy" sizes="(max-width: 1518px) 100vw, 1518px"
srcset="static/images/flare-left-500.png 500w, static/images/flare-left-800.png 800w, static/images/flare-left.png 1518w"
alt="" class="new-flare-nav top-left hide-mobile">
</div>
<div class="container">
<div class="hero">
<h1>Hello from FL0.</h1>
<p>Congratulations, you've deployed a Python web server with FL0!</p>
</div>
<div class="logo">
<img src="static/images/logo.svg" loading="lazy" alt="">
</div>
</div>
<script type="text/javascript">
document.addEventListener('click', function (event) {
const x = event.clientX / window.innerWidth;
const y = event.clientY / window.innerHeight;
confetti({
origin: { x, y }
});
});
confetti();
</script>
</body>