-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlandingpage.html
114 lines (109 loc) · 3.26 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>__FILENAME__ - shared with Dropshare</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"
/>
<link rel="icon" href="https://dropshare.app/favicon.png" />
<meta name="generator" content="Dropshare http://dropshare.app" />
<meta property="twitter:card" content="photo" />
<meta property="twitter:image" content="__PREVIEWURL__" [^] />
<meta property="twitter:title" content="__FILENAME__" />
<title>__FILENAME__</title>
<style type="text/css">
.img-thumbnail {
border: 0;
background: 0;
box-shadow: none;
}
</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"
>
<a
class="navbar-brand navbar-brand-dynamic-color fade-page color-white"
style="color: #fff"
href="https://dropshare.app"
>
<img
alt="Dropshare"
class="noscrolled"
src="https://dropshare.app/assets/img/logos/[email protected]"
height="42"
width="42"
/>
Dropshare
</a>
<div class="my-5">
<div class="row justify-content-center">
<div class="col-12">
<h2>__FILENAME__</h2>
<div class="lead">
<p>__SHAREDATE__</p>
</div>
</div>
</div>
</div>
<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>
<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>
</div>
</div>
</section>
</body>
</html>