2022-11-19 12:47:38 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2022-12-21 17:55:55 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2022-11-19 12:47:38 +00:00
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
2022-12-21 15:49:41 +00:00
|
|
|
<link rel="stylesheet" href="/static/styles.css" />
|
|
|
|
<script src="/static/scripts.js"></script>
|
2022-12-21 17:55:55 +00:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/highlight.min.js"></script>
|
|
|
|
<body class="bg-zinc-800">
|
2022-12-21 17:56:41 +00:00
|
|
|
<div class="flex flex-col items-center space-y-12">
|
2022-12-21 17:55:55 +00:00
|
|
|
<h2 class="text-3xl font-bold text-gray-300">Obsolute Paste</h2>
|
2022-12-21 17:56:41 +00:00
|
|
|
{% block content %}
|
|
|
|
<pre class="w-10/12 text-gray-100 border border-solid border-emerald-200 rounded bg-zinc-800p-2" id="pastecontent">{{paste_content}}</pre>
|
|
|
|
{% endblock content %}
|
2022-12-21 17:55:55 +00:00
|
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
<br/>
|
|
|
|
<br/>
|
|
|
|
<div class="fixed bottom-4 left-0 w-screen h-12 md:flex md:items-center md:justify-between md:p-6">
|
|
|
|
<span class="text-sm text-gray-400 sm:text-center">©2022 Maestro Creativescape.</span>
|
|
|
|
<ul class="flex flex-wrap items-center mt-3 text-sm text-gray-400 sm:mt-0">
|
|
|
|
<li>
|
|
|
|
<a href="https://baalajimaestro.me" class="mr-4 hover:underline md:mr-6 ">Home</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="https://links.baalajimaestro.me" class="mr-4 hover:underline md:mr-6">Links</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="https://git.baalajimaestro.me/baalajimaestro/obsolute-paste" class="mr-4 hover:underline md:mr-6">Source Code</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
Powered by <a href="https://actix.rs" class="hover:underline">Actix</a> & <a href="https://obsidian.md" class="mr-4 hover:underline md:mr-6">Obsidian</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2022-11-19 17:26:05 +00:00
|
|
|
</div>
|
2022-12-21 17:55:55 +00:00
|
|
|
</body>
|
2022-11-19 12:47:38 +00:00
|
|
|
</html>
|