mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-27 14:40:18 +01:00
42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!doctype html>
|
|
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
|
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
|
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
|
<!--[if gt IE 8]><!-->
|
|
<html class="no-js">
|
|
<!--<![endif]-->
|
|
|
|
include "includes/head.html"
|
|
|
|
<body id="download">
|
|
|
|
include "includes/ga.html"
|
|
include "includes/navigation.html"
|
|
|
|
|
|
<section id="home">
|
|
<div class="wrapper">
|
|
<br/>
|
|
<h2 class="page-title">{{.Filename}}</h2>
|
|
<h4>type: <b>{{.ContentType}}</b></h4>
|
|
<h4>size: <b>{{.ContentLength | format "#,###."}}</b> bytes</h4>
|
|
<div>
|
|
<a href="#" id="copy-link-btn" class="btn-cta btn">copy link</a>
|
|
<a href="{{.Url}}" class="btn-cta btn"> download</i> </a>
|
|
<div id="copy-link-wrapper" class="copy-link-wrapper">
|
|
<p>Press Ctrl / CMD + C to copy link to your clipboard.</p>
|
|
<input readonly="readonly" type="text" value="{{.Url}}" />
|
|
</div>
|
|
<div id="overlay" class="overlay"></div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
include "includes/footer.html"
|
|
include "includes/js.html"
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|