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.
		
		
		
		
		
			
		
			
				
					
					
						
							104 lines
						
					
					
						
							4.5 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							104 lines
						
					
					
						
							4.5 KiB
						
					
					
				| <!doctype html> | |
| <html lang="en" manifest="appcache.manifest"> | |
|   <head> | |
|     <title>Quill Editor</title> | |
|     <meta charset="utf-8"> | |
|     <link rel="pingback" href="http://webmention.io/aaronpk/xmlrpc" /> | |
|     <link rel="webmention" href="http://webmention.io/aaronpk/webmention" /> | |
| 
 | |
|     <meta name="apple-mobile-web-app-capable" content="yes" /> | |
|     <!-- standard viewport tag to set the viewport to the device's width | |
|       , Android 2.3 devices need this so 100% width works properly and | |
|       doesn't allow children to blow up the viewport width--> | |
|     <meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width" /> | |
|     <!-- width=device-width causes the iPhone 5 to letterbox the app, so | |
|       we want to exclude it for iPhone 5 to allow full screen apps --> | |
|     <meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1" media="(device-height: 568px)" /> | |
| 
 | |
|     <link rel="stylesheet" href="/editor/medium-editor/css/medium-editor.min.css"> | |
|     <link rel="stylesheet" href="/editor/medium-editor/css/themes/default.min.css"> | |
|     <link rel="stylesheet" href="/editor/medium-editor/css/medium-editor-insert-plugin.min.css"> | |
|     <link rel="stylesheet" href="/editor/medium-editor/css/medium-editor-insert-plugin-frontend.min.css"> | |
|     <link href="/editor/font-awesome/css/font-awesome.css" rel="stylesheet"> | |
|     <link rel="stylesheet" href="/editor/style.css"> | |
| 
 | |
|     <script src="/editor/jquery-1.11.3.min.js"></script> | |
|     <script src="/editor/jquery-ui-1.11.4.custom/jquery-ui.min.js"></script> | |
|     <script src="/editor/jquery.fileupload.js"></script> | |
|     <script src="/editor/jquery.iframetransport.js"></script> | |
| 
 | |
|     <script src="/editor/handlebars.min.js"></script> | |
|     <script src="/editor/medium-editor/js/medium-editor.min.js"></script> | |
|     <script src="/editor/medium-editor/js/medium-editor-insert-plugin.min.js"></script> | |
|     <script src="/editor/localforage/localforage.js"></script> | |
| 
 | |
|     <link rel="apple-touch-icon" sizes="57x57" href="/images/quill-icon-57.png"> | |
|     <link rel="apple-touch-icon" sizes="72x72" href="/images/quill-icon-72.png"> | |
|     <link rel="apple-touch-icon" sizes="114x114" href="/images/quill-icon-114.png"> | |
|     <link rel="apple-touch-icon" sizes="144x144" href="/images/quill-icon-144.png"> | |
| 
 | |
|     <link rel="icon" href="/favicon.ico" type="image/x-icon"> | |
|   </head> | |
| <body> | |
| 
 | |
| <div class="toolbar"> | |
|   <div class="toolbar-left"> | |
|     <span class="item"><a href="/"><img src="/editor/quill-logo-36.png" width="36" height="31" class="logo"></a></span> | |
|     <span class="item text"><span id="draft-status">Draft</span></span> | |
|   </div> | |
|   <div class="toolbar-right"> | |
|     <button class="btn" id="publish_btn">Publish <i class="fa fa-caret-down"></i></button> | |
|     <button class="btn" id="new_btn">New</button> | |
|   </div> | |
|   <div class="clear"></div> | |
| </div> | |
| 
 | |
| <div class="publish-dropdown hidden"> | |
|   <div class="arrow"></div> | |
|   <div class="dropdown-content action-publish"> | |
| 
 | |
|     <div style="float:right"><button class="btn btn-medium" id="publish-confirm">Publish Now</button></div> | |
|     <div style="clear:right;"></div> | |
| 
 | |
|     <div class="helptext" id="publish-help"> | |
|       <div>Clicking "Publish Now" will send a request to your Micropub endpoint.</div><br> | |
|       <div>The request will include two fields, "name" and "content", where the content will be the full HTML for this post.</div> | |
|     </div> | |
| 
 | |
|     <div class="helptext hidden" id="publish-in-progress"> | |
|       Posting... <!-- TODO replace this with a CSS animated spinner --> | |
|     </div> | |
| 
 | |
|     <div class="helptext hidden" id="publish-success"> | |
|       <div>It worked! The post is on your site!</div><br> | |
|       <div><a href="" id="publish-success-url">View your post</a></div> | |
|     </div> | |
| 
 | |
|     <div class="helptext hidden" id="publish-error"> | |
|       <div>Something went wrong! Below is the response from your Micropub endpoint.</div><br> | |
|       <pre id="publish-error-debug"></pre> | |
|     </div> | |
| 
 | |
|   </div> | |
|   <div class="dropdown-content action-signin hidden"> | |
|     <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> | |
|     <input type="url" class="form-field-small" placeholder="yourdomain.com" id="signin-domain"> | |
|     <button class="btn btn-small" id="signin-btn">Sign In</button> | |
|   </div> | |
| </div> | |
| 
 | |
| <div class="container"> | |
|   <input id="post-name" type="text" value="" placeholder="Title"> | |
|   <div id="content" class="editable"></div> | |
| </div> | |
| 
 | |
| <div id="new_version_available"> | |
|   <div class="inner"> | |
|     There is a new version available! Refresh to load the new version. | |
|   </div> | |
| </div> | |
| 
 | |
| <script src="/editor/editor.js"></script> | |
| 
 | |
| </body> | |
| </html>
 |