You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

111 lines
5.0 KiB

  1. <!doctype html>
  2. <html lang="en" manifest="appcache.manifest">
  3. <head>
  4. <title>Quill Editor</title>
  5. <meta charset="utf-8">
  6. <link rel="pingback" href="http://webmention.io/aaronpk/xmlrpc" />
  7. <link rel="webmention" href="http://webmention.io/aaronpk/webmention" />
  8. <meta name="apple-mobile-web-app-capable" content="yes" />
  9. <!-- standard viewport tag to set the viewport to the device's width
  10. , Android 2.3 devices need this so 100% width works properly and
  11. doesn't allow children to blow up the viewport width-->
  12. <meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width" />
  13. <!-- width=device-width causes the iPhone 5 to letterbox the app, so
  14. we want to exclude it for iPhone 5 to allow full screen apps -->
  15. <meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1" media="(device-height: 568px)" />
  16. <link rel="stylesheet" href="/editor/medium-editor/css/medium-editor.min.css">
  17. <link rel="stylesheet" href="/editor/medium-editor/css/themes/default.min.css">
  18. <link rel="stylesheet" href="/editor/medium-editor/css/medium-editor-insert-plugin.min.css">
  19. <link rel="stylesheet" href="/editor/medium-editor/css/medium-editor-insert-plugin-frontend.min.css">
  20. <link href="/editor/font-awesome/css/font-awesome.css" rel="stylesheet">
  21. <link rel="stylesheet" href="/editor/style.css">
  22. <script src="/editor/jquery-1.11.3.min.js"></script>
  23. <script src="/editor/jquery-ui-1.11.4.custom/jquery-ui.min.js"></script>
  24. <script src="/editor/jquery.fileupload.js"></script>
  25. <script src="/editor/jquery.iframetransport.js"></script>
  26. <script src="/editor/handlebars.min.js"></script>
  27. <script src="/editor/medium-editor/js/medium-editor.min.js"></script>
  28. <script src="/editor/medium-editor/js/medium-editor-insert-plugin.min.js"></script>
  29. <script src="/editor/localforage/localforage.js"></script>
  30. <link rel="apple-touch-icon" sizes="57x57" href="/images/quill-icon-57.png">
  31. <link rel="apple-touch-icon" sizes="72x72" href="/images/quill-icon-72.png">
  32. <link rel="apple-touch-icon" sizes="114x114" href="/images/quill-icon-114.png">
  33. <link rel="apple-touch-icon" sizes="144x144" href="/images/quill-icon-144.png">
  34. <link rel="icon" href="/favicon.ico" type="image/x-icon">
  35. </head>
  36. <body>
  37. <div class="toolbar">
  38. <div class="toolbar-left">
  39. <span class="item"><a href="/"><img src="/editor/quill-logo-36.png" width="36" height="31" class="logo"></a></span>
  40. <span class="item text"><span id="draft-status">Draft</span></span>
  41. </div>
  42. <div class="toolbar-right">
  43. <button class="btn" id="publish_btn">Publish <i class="fa fa-caret-down"></i></button>
  44. <button class="btn" id="new_btn">New</button>
  45. </div>
  46. <div class="clear"></div>
  47. </div>
  48. <div class="micropub-html-warning hidden"><div>
  49. <button class="btn btn-default" id="micropub-html-btn">Upgrade me!</button>
  50. <b>Upcoming change!</b>
  51. The Micropub spec now requires HTML content be sent as a nested object, <code>content[html]=&lt;b&gt;example&lt;/b&gt;</code>.
  52. You can <a href="http://indiewebcamp.com/Micropub-brainstorming#HTML_Escaping">read more about the change here</a>.
  53. When you are ready to receive the content as an object, click the button to switch.
  54. </div></div>
  55. <div class="publish-dropdown hidden">
  56. <div class="arrow"></div>
  57. <div class="dropdown-content action-publish">
  58. <div style="float:right"><button class="btn btn-medium" id="publish-confirm">Publish Now</button></div>
  59. <div style="clear:right;"></div>
  60. <div class="helptext" id="publish-help">
  61. <div>Clicking "Publish Now" will send a request to your Micropub endpoint.</div><br>
  62. <div>The request will include two fields, "name" and "content", where the content will be the full HTML for this post.</div>
  63. </div>
  64. <div class="helptext hidden" id="publish-in-progress">
  65. Posting... <!-- TODO replace this with a CSS animated spinner -->
  66. </div>
  67. <div class="helptext hidden" id="publish-success">
  68. <div>It worked! The post is on your site!</div><br>
  69. <div><a href="" id="publish-success-url">View your post</a></div>
  70. </div>
  71. <div class="helptext hidden" id="publish-error">
  72. <div>Something went wrong! Below is the response from your Micropub endpoint.</div><br>
  73. <pre id="publish-error-debug"></pre>
  74. </div>
  75. </div>
  76. <div class="dropdown-content action-signin hidden">
  77. <div class="helptext">You need to sign in before you can publish! Don't worry, your draft will still be here when you finish signing in.</div>
  78. <input type="url" class="form-field-small" placeholder="yourdomain.com" id="signin-domain">
  79. <button class="btn btn-small" id="signin-btn">Sign In</button>
  80. </div>
  81. </div>
  82. <div class="container">
  83. <input id="post-name" type="text" value="" placeholder="Title">
  84. <div id="content" class="editable"></div>
  85. </div>
  86. <div id="new_version_available">
  87. <div class="inner">
  88. There is a new version available! Refresh to load the new version.
  89. </div>
  90. </div>
  91. <script src="/editor/editor.js"></script>
  92. </body>
  93. </html>