39 lines
978 B
Plaintext
39 lines
978 B
Plaintext
|
<!doctype html>
|
||
|
<html lang="{{ currentLocale }}">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>Editor — Tipus</title>
|
||
|
<script src="/static/react@18.2.0.min.js"></script>
|
||
|
<script src="/static/react-dom@18.2.0.min.js"></script>
|
||
|
<link rel="stylesheet" type="text/css" media="screen" href="/static/editor.css">
|
||
|
<style>
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.editor {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.iso-editor {
|
||
|
min-height: 100vh;
|
||
|
}
|
||
|
|
||
|
.iso-editor .edit-post-layout.interface-interface-skeleton {
|
||
|
position: fixed;
|
||
|
inset: 0;
|
||
|
}
|
||
|
|
||
|
.block-editor-block-list__layout p {
|
||
|
font-size: 22px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body class="editor">
|
||
|
<textarea id="content" style="display: none;">{{ . }}</textarea>
|
||
|
<script src="/static/editor.js"></script>
|
||
|
</body>
|
||
|
</html>
|