2013-08-20 00:53:03 +00:00
<!doctype html>
< html >
< head >
< title > Caret< / title >
2013-09-06 07:04:20 +00:00
< meta charset = "utf-8" >
2013-09-13 22:57:57 +00:00
< link rel = "stylesheet" type = "text/css" href = "css/caret.css" id = "theme" >
2013-08-20 00:53:03 +00:00
< / head >
< body >
2013-08-23 23:03:46 +00:00
< ul class = "toolbar" > < / ul >
2013-08-21 00:35:25 +00:00
2013-11-06 22:45:10 +00:00
< div class = "central" >
2013-11-03 02:29:10 +00:00
< div class = "project" > < / div >
2013-11-06 22:45:10 +00:00
< div class = "editing" >
< div class = "tabs" > < / div >
< div id = "editor" > < / div >
< / div >
2013-11-03 02:29:10 +00:00
< / div >
2013-08-20 00:53:03 +00:00
2013-08-23 23:03:46 +00:00
< div class = "bottom-bar" >
2013-09-20 15:31:04 +00:00
< div class = "status-text" > < / div >
2013-09-04 17:01:12 +00:00
< div class = "mode-theme" >
2013-09-04 23:36:33 +00:00
< select class = "syntax" command = "session:syntax" tabindex = -1 > < / select >
< select class = "theme" command = "editor:theme" tabindex = -1 > < / select >
2013-09-04 17:01:12 +00:00
< / div >
2013-08-23 23:03:46 +00:00
< / div >
2013-09-10 16:19:14 +00:00
< div class = "palette" >
2013-10-15 05:17:58 +00:00
< div class = "main" >
< h1 class = "mode" > < / h1 >
< input class = "request" > < / input >
< / div >
2013-09-10 16:19:14 +00:00
< ul class = "results" > < / ul >
< / div >
< template id = "palette-result" >
< li >
< div class = "meta" > < / div >
< div class = "detail" > < / div >
< / li >
< / template >
2013-08-20 00:53:03 +00:00
< script src = "js/ace/ace.js" > < / script >
2013-12-22 18:56:13 +00:00
< script src = "js/lib/promise-0.1.1.min.js" > < / script >
2013-08-20 00:53:03 +00:00
< script data-main = "./js/main.js" src = "require.js" > < / script >
2013-09-01 18:09:09 +00:00
2013-09-02 00:41:52 +00:00
< template id = "dialog" >
2013-09-06 07:04:20 +00:00
< div class = "modal-overlay" >
< div class = "dialog" >
< span class = "text" > < / span >
< div class = "button-row" > < / div >
< / div >
< / div >
< / template >
< template id = "about" >
2013-09-24 14:57:22 +00:00
< div > < span class = "credits" >
< h2 > Caret v.%VERSION%< / h2 >
< ul >
< li > Written by < a href = "http://thomaswilburn.net" target = _blank > Thomas Wilburn< / a >
< li >
< a href = "http://thomaswilburn.net/caret" target = _blank > [ Home Page ]< / a >
—
< a href = "https://chrome.google.com/webstore/support/fljalecfjciodhpcledpamjachpmelml#bug" target = _blank > [ Support ]< / a >
< li > Caret is available under a GPL license, which means that the < a href = "https://github.com/thomaswilburn/Caret" target = _blank > source code< / a > is freely available for you to use and modify as you see fit. If you find Caret useful, consider donating to the Free Software Foundation's < a href = "https://my.fsf.org/donate/directed-donations/esp" target = _blank > Fund to End Software Patents< / a > .
< / ul >
< / span > < / div >
2013-09-02 00:41:52 +00:00
< / template >
2013-08-20 00:53:03 +00:00
< / body >
< / html >