2012-04-24 14:22:59 +04:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
2020-08-12 12:00:41 +03:00
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<title>0bin - encrypted pastebin</title>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<meta name="description" content="0bin is a client-side-encrypted
|
2019-11-16 20:32:23 +03:00
|
|
|
|
pastebin featuring burn after reading, history, and
|
2012-04-28 21:57:18 +04:00
|
|
|
|
a clipboard">
|
2012-04-24 14:22:59 +04:00
|
|
|
|
|
2020-08-12 12:00:41 +03:00
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
2012-05-17 13:13:40 +04:00
|
|
|
|
|
2020-08-12 12:00:41 +03:00
|
|
|
|
%if settings.COMPRESSED_STATIC_FILES:
|
|
|
|
|
<link href="/static/css/style.min.css?{{ VERSION }}" rel="stylesheet" />
|
|
|
|
|
%else:
|
|
|
|
|
<link href="/static/css/prettify.css" rel="stylesheet" />
|
|
|
|
|
<link href="/static/css/desert.css" rel="stylesheet" />
|
|
|
|
|
<link href="/static/css/bootswatch.4.5.css" rel="stylesheet">
|
|
|
|
|
<link href="/static/css/style.css?{{ VERSION }}" rel="stylesheet">
|
|
|
|
|
%end
|
2012-05-06 21:24:46 +04:00
|
|
|
|
|
2020-08-12 12:00:41 +03:00
|
|
|
|
</head>
|
2012-04-24 14:22:59 +04:00
|
|
|
|
|
2020-08-12 12:00:41 +03:00
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<div id="app">
|
|
|
|
|
|
2020-08-12 16:39:07 +03:00
|
|
|
|
<div class="topnav" @mouseleave="openPreviousPastesMenu =false">
|
2020-08-12 10:26:17 +03:00
|
|
|
|
<a class="brand" href="/"><span>ø</span>bin<em>.net</em></a>
|
2020-08-12 12:00:41 +03:00
|
|
|
|
<span class="tagline">"A client side encrypted PasteBin"<br><span>All pastes are AES256 encrypted, we cannot know
|
|
|
|
|
what you paste...</span>
|
2020-08-12 10:26:17 +03:00
|
|
|
|
</span>
|
|
|
|
|
|
2020-08-12 12:00:41 +03:00
|
|
|
|
<nav>
|
2020-08-12 10:26:17 +03:00
|
|
|
|
<ul>
|
2020-08-12 15:25:22 +03:00
|
|
|
|
<li class="submenu"><a href="#" @click.prevent="openPreviousPastesMenu = !openPreviousPastesMenu">Previous
|
2020-08-12 16:21:49 +03:00
|
|
|
|
pastes v</a>
|
2020-08-12 16:39:07 +03:00
|
|
|
|
<ul class="previous-pastes" id="topmenu" v-if="openPreviousPastesMenu">
|
2020-08-12 12:00:41 +03:00
|
|
|
|
<li class="item active" v-if="previousPastes.length === 0">
|
2020-08-12 16:21:49 +03:00
|
|
|
|
<a href="#">No paste yet</a>
|
2020-08-12 12:00:41 +03:00
|
|
|
|
</li>
|
|
|
|
|
<li class="item active" v-for="paste in previousPastes">
|
2020-08-12 16:21:49 +03:00
|
|
|
|
<a :href="paste.link" @click="forceLoad(paste.link)">{% paste.displayDate %}</a>
|
2020-08-12 12:00:41 +03:00
|
|
|
|
</li>
|
2012-04-24 14:22:59 +04:00
|
|
|
|
</ul>
|
2020-08-12 10:26:17 +03:00
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</nav>
|
2012-04-24 14:22:59 +04:00
|
|
|
|
|
|
|
|
|
</div>
|
2020-08-11 12:55:29 +03:00
|
|
|
|
|
2012-05-20 05:22:20 +04:00
|
|
|
|
<noscript class="container noscript">
|
2020-08-12 12:00:41 +03:00
|
|
|
|
<p>This pastebin uses client-side encryption. Therefore, it needs JavaScript enabled.</p>
|
|
|
|
|
<p>It seems like your browser doesn't have JavaScript enable.</p>
|
|
|
|
|
<p>Please enable JavaScript for this website or use a JavaScript-capable web browser.</p>
|
2012-05-20 05:22:20 +04:00
|
|
|
|
</noscript>
|
2020-08-11 12:55:29 +03:00
|
|
|
|
|
2020-08-12 12:00:41 +03:00
|
|
|
|
<div class="container-md" id="wrap-content">
|
2020-08-12 17:08:19 +03:00
|
|
|
|
|
|
|
|
|
<p :class="'alert alert-' + msg.type" v-for="msg in messages">
|
|
|
|
|
<a class="close" data-dismiss="alert" href="#" @click="$event.target.parentNode.remove()">×</a>
|
|
|
|
|
<strong class="title" v-if="msg.title" v-html="msg.title"></strong>
|
|
|
|
|
<span class="message" v-html="msg.content"></span>
|
|
|
|
|
<a v-if="msg.action.message" href="#"
|
|
|
|
|
@click.once.prevent="msg.action.callback($event)">{% msg.action.message %}</a>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
2020-08-12 12:00:41 +03:00
|
|
|
|
<div id='main'>{{!base}}</div>
|
2020-08-11 12:55:29 +03:00
|
|
|
|
</div>
|
|
|
|
|
|
2020-08-12 12:00:41 +03:00
|
|
|
|
<footer class="footer">
|
2020-08-12 15:25:22 +03:00
|
|
|
|
<ul>
|
|
|
|
|
%for i, entry in enumerate(settings.MENU):
|
2020-08-12 16:39:07 +03:00
|
|
|
|
<li>
|
|
|
|
|
%if "mailto:" in entry[1]:
|
|
|
|
|
<span :title='formatEmail(`{{ entry[1].replace("mailto:", "").replace("@", "__AT__") }}`)' class="email-link">
|
|
|
|
|
{{ entry[0] }}
|
|
|
|
|
</span>
|
|
|
|
|
%else:
|
|
|
|
|
<a href="{{ entry[1] }}">{{ entry[0] }}</a>
|
|
|
|
|
%end
|
|
|
|
|
</li>
|
2020-08-12 15:25:22 +03:00
|
|
|
|
%end
|
|
|
|
|
</ul>
|
2020-08-12 16:39:07 +03:00
|
|
|
|
|
2020-08-12 12:00:41 +03:00
|
|
|
|
%if settings.DISPLAY_COUNTER:
|
|
|
|
|
<strong>{{ pastes_count }}</strong> pastes øbinned
|
|
|
|
|
%end
|
2020-08-11 12:55:29 +03:00
|
|
|
|
</footer>
|
|
|
|
|
|
2020-08-12 12:00:41 +03:00
|
|
|
|
</div>
|
|
|
|
|
|
2020-08-11 12:55:29 +03:00
|
|
|
|
|
|
|
|
|
<script src="/static/js/vue.js"></script>
|
|
|
|
|
%if settings.COMPRESSED_STATIC_FILES:
|
2020-08-11 17:37:03 +03:00
|
|
|
|
<script src="/static/js/main.min.js?{{ VERSION }}"></script>
|
2020-08-11 12:55:29 +03:00
|
|
|
|
%else:
|
|
|
|
|
<script src="/static/js/sjcl.js"></script>
|
2020-08-11 17:37:03 +03:00
|
|
|
|
<script src="/static/js/behavior.js?{{ VERSION }}"></script>
|
2020-08-11 12:55:29 +03:00
|
|
|
|
%end
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
zerobin.max_size = {{ settings.MAX_SIZE }};
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
2020-08-12 12:00:41 +03:00
|
|
|
|
%if settings.COMPRESSED_STATIC_FILES:
|
|
|
|
|
<script src="/static/js/additional.min.js?{{ settings.VERSION }}"></script>
|
|
|
|
|
%else:
|
|
|
|
|
<script src="/static/js/lzw.js"></script>
|
|
|
|
|
<script src="/static/js/prettify.min.js"></script>
|
|
|
|
|
%end
|
|
|
|
|
|
|
|
|
|
<p id="alert-template" class="alert-primary">
|
|
|
|
|
<a class="close" data-dismiss="alert" href="#">×</a>
|
|
|
|
|
<strong class="title"></strong>
|
|
|
|
|
<span class="message"></span>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
2012-04-30 00:15:11 +04:00
|
|
|
|
|
2012-04-24 14:22:59 +04:00
|
|
|
|
</html>
|