~dricottone/noticable

ref: d9ad29e13f0f4f27f295f2868d930b55c806413a noticable/index.html -rw-r--r-- 781 bytes
d9ad29e1Dominic Ricottone Remove test file 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
<!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">
      <ul id="list-filenames"></ul>
    </div>
    <div class="container focused" id="container-editor"></div>
    <div class="container markdown-body" id="container-results"></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>