obsolute-paste/templates/paste.html
baalajimaestro bf76580950
Make the template a bit more proper
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
2022-11-19 18:17:38 +05:30

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>