notes/templates/note.html
i-am-called-glitchy a5c4ffe3e9 git init m8
2025-06-03 12:00:58 +00:00

21 lines
496 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> {{ note }} </title>
<style>
textarea { width: 100%; height: 90vh; font-family: monospace; font-size: 1em; }
#status { font-size: 0.9em; color: gray; }
</style>
</head>
<body>
<textarea id="editor" placeholder="Type here!"></textarea>
<div id="status">Loading...</div>
<script>
const noteName = "{{ note|e }}";
</script>
<script src="{{ url_for('static', filename='note.js') }}"></script>
</body>
</html>