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>
|
2024-02-18 07:54:30 +01:00
|
|
|
|
2024-02-17 15:53:47 +01:00
|
|
|
{% block body %}{% endblock %}
|
|
|
|
|
2024-02-18 07:54:30 +01:00
|
|
|
<script>function get_langs() { return '{{ self.state.langs.join(",") }}'.split(',') }</script>
|
2024-02-17 15:53:47 +01:00
|
|
|
<script src="https://unpkg.com/monaco-editor@0.8.3/min/vs/loader.js"></script>
|
|
|
|
{% block script %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|