sandy/templates/base.html

22 lines
595 B
HTML

<!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>function get_langs() { return '{{ self.state.langs.join(",") }}'.split(',') }</script>
<script src="https://unpkg.com/monaco-editor@0.8.3/min/vs/loader.js"></script>
{% block script %}{% endblock %}
</body>
</html>