Caret/main.html

73 lines
2.2 KiB
HTML
Raw Normal View History

2013-08-20 00:53:03 +00:00
<!doctype html>
<html>
<head>
<title>Caret</title>
<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
<div class="central">
<div class="project"></div>
<div class="editing">
<div class="tabs"></div>
<div id="editor"></div>
</div>
</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">
<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>
<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>
<template id="dialog">
<div class="modal-overlay">
<div class="dialog">
<span class="text"></span>
<div class="button-row"></div>
</div>
</div>
</template>
<template id="about">
<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>
&mdash;
<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>
</template>
2013-08-20 00:53:03 +00:00
</body>
</html>