sandy/templates/base.html

20 lines
483 B
HTML
Raw Normal View History

2024-02-17 15:53:47 +01:00
<!DOCTYPE html>
<html>
<head>
<title>sandy</title>
<style>
html, body, textarea {
background: #1e1e1e;
color: #eee;
}
</style>
{% block head %}{% endblock %}
</head>
<body>
<h1>Sandy</h1>
{% block body %}{% endblock %}
<script src="https://unpkg.com/monaco-editor@0.8.3/min/vs/loader.js"></script>
{% block script %}{% endblock %}
</body>
</html>