mirror of
https://github.com/Tygs/0bin.git
synced 2023-08-10 21:13:00 +03:00
128 lines
4.3 KiB
Smarty
128 lines
4.3 KiB
Smarty
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>0bin - encrypted pastebin</title>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<meta name="description"
|
||
content="0bin is a client-side-encrypted
|
||
pastebin featuring burn after reading, an history and
|
||
a clipboard">
|
||
|
||
<link rel="shortcut icon" href="/static/ico/favicon.ico">
|
||
<link href="/static/css/prettify.css" rel="stylesheet" />
|
||
<link href="/static/css/bootstrap.css" rel="stylesheet">
|
||
<link href="/static/css/style.css" rel="stylesheet">
|
||
|
||
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
|
||
<!--[if lt IE 9]>
|
||
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
||
<![endif]-->
|
||
|
||
<script src="/static/js/sjcl.js"></script>
|
||
<script src="/static/js/jquery-1.7.2.min.js"></script>
|
||
<script src="/static/js/behavior.js"></script>
|
||
<script type="text/javascript">
|
||
zerobin.max_size = {{ get('max_size', -1)}};
|
||
</script>
|
||
|
||
</head>
|
||
|
||
<body>
|
||
|
||
<div class="navbar navbar-fixed-top">
|
||
<div class="navbar-inner">
|
||
<div class="container">
|
||
<a class="btn btn-navbar" data-toggle="collapse"
|
||
data-target=".nav-collapse">
|
||
<span class="icon-bar"></span>
|
||
<span class="icon-bar"></span>
|
||
<span class="icon-bar"></span>
|
||
</a>
|
||
<a class="brand" href="/"><span>ø</span>bin<em>.net</em></a>
|
||
<div class="nav-collapse">
|
||
<ul class="nav">
|
||
<li class="active"><a href="/">Home</a></li>
|
||
<li><a href="https://github.com/sametmax/0bin">Download 0bin</a></li>
|
||
<!-- <li><a href="#faq">Faq</a></li> -->
|
||
</ul>
|
||
<p class="navbar-text pull-right"><i>"A client side encrypted PasteBin..."</i></p>
|
||
</div><!--/.nav-collapse -->
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="container">
|
||
<div class="row">
|
||
<div class="span2">
|
||
<div class="well sidebar-nav">
|
||
<ul class="nav nav-list previous-pastes">
|
||
<li class="nav-header">Previous pastes</li>
|
||
<li class="items"></li>
|
||
</ul>
|
||
</div><!--/.well -->
|
||
</div><!--/span-->
|
||
|
||
<div id='main' class="span10">
|
||
|
||
%include
|
||
|
||
</div><!--/span-->
|
||
|
||
</div><!--/row-->
|
||
|
||
<hr>
|
||
|
||
<footer>
|
||
<blockquote>
|
||
<p>«Few persons can be made to believe that it is not quite an easy thing to invent a method of secret writing which shall baffle investigation. Yet it may be roundly asserted that human ingenuity cannot concoct a cipher which human ingenuity cannot resolve...»</p>
|
||
<small>Edgar Allan Poe</small>
|
||
</blockquote>
|
||
|
||
<!--
|
||
<h4 id="pixels-total" >
|
||
<p>ø</p>
|
||
<strong>41,017,923,819</strong> pastes øbinned
|
||
</h4>
|
||
-->
|
||
|
||
</br>
|
||
<p class="greetings span12">
|
||
Based on an original idea from
|
||
<a href="http://sebsauvage.net/paste/">sebsauvage.net</a><br>
|
||
<a href="http://sametmax.com">Sam & Max</a>
|
||
</p>
|
||
</footer>
|
||
|
||
|
||
<script src="/static/js/jquery.elastic.source.js"></script>
|
||
<script src="/static/js/lzw.js"></script>
|
||
<script src="/static/js/prettify.min.js"></script>
|
||
<script src="/static/js/ZeroClipboard.js"></script>
|
||
<!--
|
||
<script src="/static/js/jquery.js"></script>
|
||
<script src="/static/js/bootstrap-transition.js"></script>
|
||
<script src="/static/js/bootstrap-alert.js"></script>
|
||
<script src="/static/js/bootstrap-modal.js"></script>
|
||
<script src="/static/js/bootstrap-dropdown.js"></script>
|
||
<script src="/static/js/bootstrap-scrollspy.js"></script>
|
||
<script src="/static/js/bootstrap-tab.js"></script>
|
||
<script src="/static/js/bootstrap-tooltip.js"></script>
|
||
<script src="/static/js/bootstrap-popover.js"></script>
|
||
<script src="/static/js/bootstrap-button.js"></script>
|
||
<script src="/static/js/bootstrap-collapse.js"></script>
|
||
<script src="/static/js/bootstrap-carousel.js"></script>
|
||
<script src="/static/js/bootstrap-typeahead.js"></script>
|
||
|
||
-->
|
||
|
||
<p id="alert-template">
|
||
<a class="close" data-dismiss="alert" href="#">×</a>
|
||
<strong class="title"></strong>
|
||
<span class="message"></span>
|
||
</p>
|
||
|
||
</body>
|
||
|
||
</html>
|