65 lines
No EOL
1.7 KiB
HTML
65 lines
No EOL
1.7 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Caret</title>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" type="text/css" href="css/caret.css" id="theme">
|
|
</head>
|
|
<body>
|
|
|
|
<ul class="toolbar"></ul>
|
|
<div class="tabs"></div>
|
|
|
|
<div class="editor-container">
|
|
<div id="editor"></div>
|
|
</div>
|
|
|
|
<div class="bottom-bar">
|
|
<div class="status-text"></div>
|
|
<div class="mode-theme">
|
|
<select class="syntax" command="session:syntax" tabindex=-1></select>
|
|
<select class="theme" command="editor:theme" tabindex=-1></select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="palette">
|
|
<h1 class="mode"></h1>
|
|
<input class="request"></input>
|
|
<ul class="results"></ul>
|
|
</div>
|
|
|
|
<template id="palette-result">
|
|
<li>
|
|
<div class="meta"></div>
|
|
<div class="detail"></div>
|
|
</li>
|
|
</template>
|
|
|
|
<script src="js/ace/ace.js"></script>
|
|
<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</h2>
|
|
<ul>
|
|
<li>Ver. %VERSION%</li>
|
|
<li>Written by <a href="http://thomaswilburn.net" target=_blank>Thomas Wilburn</a>
|
|
<li><a href="http://thomaswilburn.net/caret" target=_blank>Visit the Caret home page</a>
|
|
<li><a href="https://chrome.google.com/webstore/support/fljalecfjciodhpcledpamjachpmelml#bug" target=_blank>Questions, comments, or problems?</a>
|
|
<li>Thanks for your support!
|
|
</ul>
|
|
</span>
|
|
</div>
|
|
</template>
|
|
</body>
|
|
</html> |