mirror of
https://github.com/Tygs/0bin.git
synced 2023-08-10 21:13:00 +03:00
41 lines
987 B
Smarty
41 lines
987 B
Smarty
%if "burn_after_reading" in str(paste.expiration):
|
|
%if keep_alive:
|
|
<div class="alert alert-info">
|
|
<strong>Ok!</strong>
|
|
This paste will be deleted the next time it is read.
|
|
</div>
|
|
%else:
|
|
<div class="alert">
|
|
<strong>Warning!</strong>
|
|
This paste has self-destructed. If you close this windows, there is not way
|
|
to recover it.
|
|
</div>
|
|
%end
|
|
%end
|
|
|
|
<div class="well">
|
|
<form action="/" method="get" accept-charset="utf-8">
|
|
<p>
|
|
<a href="#">Download</a>
|
|
<span class="paste-option btn-group top">
|
|
<button class="btn"><i class="icon-camera"></i> Clone</button>
|
|
<button class="btn">New Paste</button>
|
|
</span>
|
|
</p>
|
|
|
|
<p>
|
|
<pre id="paste-content" class="prettyprint linenums">
|
|
<code>
|
|
{{ paste.content }}
|
|
</code>
|
|
</pre>
|
|
</p>
|
|
|
|
<p class="paste-option btn-group bottom">
|
|
<button class="btn"><i class="icon-camera"></i> Clone</button>
|
|
<button class="btn">New Paste</button>
|
|
</p>
|
|
|
|
</form>
|
|
</div>
|
|
%rebase base |