forked from tjosten/dropshare-landing-page-modern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
landingpage.html
97 lines (93 loc) · 2.7 KB
/
landingpage.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>/dropd/ __FILENAME__</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://dropshare.app/assets/css/custom.css"
rel="stylesheet"
type="text/css"
media="all"
/>
<link
href="https://dropshare.app/assets/css/theme.css"
rel="stylesheet"
type="text/css"
media="all"
/>
<link
href="https://fonts.googleapis.com/css?family=Nunito:400,400i,600,700&display=swap"
rel="stylesheet"
/>
<style type="text/css">
.img-thumbnail {
border: 0;
background: 0;
box-shadow: none;
}
.dropitbotm {
position:absolute;
bottom:0;
left: 50%;
transform: translateX(-50%);
}
.bg-gradient {
background: linear-gradient(to top, #192b27, #08625f) !important;
}
</style>
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"
></script>
<script type="text/javascript">
$(document).ready(function () {
var file = "__PREVIEWURL__";
var extension = file.split(".").pop();
if (
extension == "jpg" ||
extension == "png" ||
extension == "mp4" ||
extension == "mov" ||
extension == "txt" ||
extension == "webm" ||
extension == "mp3" ||
extension == "wav" ||
extension == "aiff"
) {
} else {
$("#preview-div").hide();
}
});
</script>
</head>
<body>
<section class="bg-gradient text-white p-0 o-hidden">
<div class="container min-vh-100 d-flex flex-column justify-content-top text-center py-4 py-md-5" >
<div class="row justify-content-center" id="preview-div">
<div class="col-xl-8 col-lg-9 col-md-10">
<div class="card card-body bg-white flex-row flex-wrap justify-content-around" >
<div>
__PREVIEW__
</div>
</div>
</div>
</div>
<p>__FILENAME__</p>
<div class="download mt-3">
<a href="__PATH__" class="btn btn-primary" download="__FILENAME__" >
Download
</a><br />
<p class="text-muted mt-2">__FILESIZE__</p>
<p class="text-muted mt-2">dropd on __SHAREDATE__</p>
</div>
<div class="dropitbotm">
<a style="color: rgba(255, 255, 255, 0.26)" href="https://dropshare.app" >
dropd w/ dropshare.app
</a>
</div>
</div>
</section>
</body>
</html>