17 lines
432 B
HTML
17 lines
432 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<body>
|
|
<h2 class="text-3xl font-bold">
|
|
Obsolute Paste - baalajimaestro
|
|
</h2>
|
|
{% block content %}
|
|
<textarea readonly>
|
|
{{paste_content}}
|
|
</textarea>
|
|
{% endblock content %}
|
|
</body>
|
|
</html>
|