mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-27 14:40:18 +01:00
54 lines
1.7 KiB
HTML
54 lines
1.7 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 class="row animated fadeInDown">
|
|
<div id="from-terminal" class=" box col-md-8 col-md-offset-2 col-xs-12">
|
|
<div class="terminal-top">
|
|
|
|
</div>
|
|
<div id="terminal" class="terminal preview-image">
|
|
<video width="320" height="240" controls>
|
|
<source src="{{.Url}}" type="{{.ContentType}}">
|
|
</video>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<br/>
|
|
<div>
|
|
|
|
<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>
|
|
</section>
|
|
|
|
include "includes/footer.html"
|
|
include "includes/js.html"
|
|
|
|
</body>
|
|
|
|
</html>
|