jsoncv/src/editor/index.html

35 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JSONCV Editor</title>
<link rel="stylesheet" href="styles.scss" />
</head>
<body>
<div id="main">
<div class="sidebar column">
<div>
<div>JSONCV</div>
<div>Editor</div>
</div>
<div class="editor-toc"></div>
<div class="app-actions">
<button id="fn-show-preview">Show Preview</button>
<button id="fn-show-json">Show JSON</button>
<button id="fn-download-json">Download JSON</button>
<button id="fn-download-html">Download HTML</button>
</div>
</div>
<div class="middle column editor-container"></div>
<div class="right column">
<div class="output-json code-block" style="display: none;"></div>
<iframe class="output-html" src="/editor/preview.html" frameborder="0"></iframe>
</div>
</div>
<script src="main.js" type="module"></script>
</body>
</html>