obsolute-paste/templates/paste.html

18 lines
432 B
HTML
Raw Normal View History

<!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>