~dricottone/noticable

ref: 2b896b8a90b76ebf5befb8d4f9dbff6b8e1f68f9 noticable/index.html -rw-r--r-- 1.2 KiB
2b896b8aDominic Ricottone Minimal working program 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width" />
    <title>A noticable note editor</title>
    <meta name="description" content="" />
    <link rel="stylesheet" href="node_modules/github-markdown-css/github-markdown.css" />
    <link rel="stylesheet" href="noticable.css" />
  </head>
  <body>
    <div class="sidebar">
      <div id="settings">
        <p>Editor Mode:</p>
        <input id="ui-focus-editor" type="checkbox" checked onchange="uiToggleEditor()">
        <label for="ui-focus-editor"></label>
        <p>Enable Rendering:</p>
        <input id="ui-enable-render" type="checkbox" checked>
        <label for="ui-enable-render"></label>
      </div>
      <ul id="list-filenames"></ul>
    </div>
    <div class="container focused" id="container-editor"></div>
    <!--NOTE: .markdown-body is the target for Github Markdown CSS module; do not modify!-->
    <div class="container markdown-body" id="container-rendered"></div>
    <script src="node_modules/jquery/dist/jquery.min.js"></script>
    <script src="node_modules/monaco-editor/min/vs/loader.js"></script>
    <script src="renderer.js"></script>
  </body>
</html>