541ef85e2c
Also added an option to search all files by default. Fixes #57 and #53.
66 lines
No EOL
2.1 KiB
HTML
66 lines
No EOL
2.1 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">
|
|
<div class="main">
|
|
<h1 class="mode"></h1>
|
|
<input class="request"></input>
|
|
</div>
|
|
<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 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>
|
|
</template>
|
|
</body>
|
|
</html> |