better-think-editor/index.html
Christian Lawson-Perfect 899087ed49 first commit
This is the first commit.

With stuff on several lines.
2025-02-08 15:44:11 +00:00

39 lines
No EOL
1.1 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Elm app by clp</title>
<link rel="stylesheet" href="dist/think-editor.css">
</head>
<body>
<p>Think editor test page</p>
<p>It's loading!</p>
<script id="think-editor-data" type="application/json">
{
"preview_url": "https://somethingorotherwhatever.com/tiny-elvis/",
"slug": "loaded-thing",
"files": [
{"path": ".", "is_dir": true, "name": ".."},
{"path": "src/poo.elm", "is_dir": false, "name": "poo.elm"}
],
"file_path": "src/poo.elm",
"is_dir": false,
"file_content": "this\nis\nmy\nfile",
"csrf_token": "arg",
"elm_packages": [
{
"name": "poo",
"summary": "poop",
"version": "1",
"license": "p"
}
]
}
</script>
<script src="dist/think-editor.js"></script>
<script src="test.mjs" type="module"></script>
</body>
</html>