2014-11-05 01:32:12 +01:00
<!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] -->
2014-11-08 14:33:37 +01:00
include "includes/head.html"
2014-11-05 01:32:12 +01:00
2014-11-06 17:12:59 +01:00
< body id = "download" >
2014-11-05 01:32:12 +01:00
< script >
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-40833733-1', 'transfer.sh');
ga('send', 'pageview');
< / script >
2014-11-08 14:33:37 +01:00
include "includes/navigation.html"
2014-11-05 01:32:12 +01:00
2014-11-06 17:12:59 +01:00
< section id = "home" >
< div class = "wrapper" >
< h2 >
{{.Filename}}< / h2 >
< a href = "{{.Url}}" > < / a >
< 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" >
< div id = "md-preview" > < / div >
2014-11-05 01:32:12 +01:00
< / div >
2014-11-06 17:12:59 +01:00
< / div >
< / div >
< br / >
2014-11-08 14:33:37 +01:00
< 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 >
2014-11-06 17:12:59 +01:00
< / section >
2014-11-05 01:32:12 +01:00
< script >
(function() {
var uv = document.createElement('script');
uv.type = 'text/javascript';
uv.async = true;
uv.src = '//widget.uservoice.com/5rkATbLIm8ClJQeOirOhFg.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(uv, s)
})()
< / script >
<!-- [if lt IE 7]>
< p class = "browsehappy" > You are using an < strong > outdated< / strong > browser. Please < a href = "http://browsehappy.com/" > upgrade your browser< / a > to improve your experience.< / p >
<![endif]-->
< script >
(function(b, o, i, l, e, r) {
b.GoogleAnalyticsObject = l;
b[l] || (b[l] =
function() {
(b[l].q = b[l].q || []).push(arguments)
});
b[l].l = +new Date;
e = o.createElement(i);
r = o.getElementsByTagName(i)[0];
e.src = '//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e, r)
}(window, document, 'script', 'ga'));
ga('create', 'UA-40833733-1', 'transfer.sh');
ga('send', 'pageview');
< / script >
2014-11-08 14:33:37 +01:00
2014-11-06 17:12:59 +01:00
include "includes/js.html"
2014-11-08 14:33:37 +01:00
2014-11-05 01:32:12 +01:00
< script >
var text = "# Markdown *works*.";
var converter = new Showdown.converter();
var html = converter.makeHtml(text);
$('#md-preview').append(html);
< / script >
< / body >
< / html >