-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (75 loc) · 3.42 KB
/
index.html
File metadata and controls
99 lines (75 loc) · 3.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html> <meta charset=UTF-8> <!--
CoffeeShop - Copyright (C) 2015 Carl Smith
This application's JavaScript, CoffeeScript and CSS code, as well as all
of the included documentation, is free software: you can redistribute it
and/or modify it under the terms of the GNU General Public License as it
is published by the Free Software Foundation. You are free to use either
version 3 of the License, or any later version.
This software is distributed WITHOUT ANY WARRANTY, not even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* GNU GPL License: http://www.gnu.org/licenses/gpl-3.0.html
* CoffeeShop Source Code: https://github.com/carlsmith/coffeeshop
This software uses, modifies and derives from other software that is
published by third parties.
Much of this project's documentation is derived from the Little Book
on CoffeeScript by Alex MacCaw and his contributors.
This project also uses the openly licensed portion of the Droid Sans
Mono font, designed by Steve Matteson of Ascender Corp, and licensed
with the Android Software Development Kit.
A [hopefully complete] list of third party projects we use code from
can be found in the root directory (/CONTRIBUTORS.md).
-->
<title> cosh </title>
<link id=favicon rel=icon type=image/png href=/images/skull.png>
<!-- Droid Sans Mono font -->
<link rel=stylesheet href=/fonts/droid_sans_mono/stylesheet.css>
<!-- CoffeeShop CSS -->
<link rel=stylesheet href=/styles/shell.css>
<!-- Toastr CSS -->
<link rel="stylesheet" href="/scripts/cosh/toastr/toastr.css">
<link rel="stylesheet" href="/scripts/cosh/toastr/toastr-responsive.css">
<!-- Builtin libraries - jQuery, SugarJS, ACE and Toastr -->
<script src=/scripts/cosh/jquery.js></script>
<script src=/scripts/cosh/sugar.js></script>
<script src=/scripts/cosh/ace/ace.js></script>
<script src=/scripts/cosh/toastr/toastr.js></script>
<script src="https://google.github.io/traceur-compiler/bin/traceur.js"></script>
<!-- Require - Loads boot.js -->
<script data-main=scripts/boot src=/scripts/cosh/require.js></script>
<body>
<!-- The fixed banner at the top of the screen. -->
<div id=banner>
<!-- this is the shell side of the banner -->
<span id=brand>checking...</span>
<span id=shell-links>
<a id=home-link class=banner-link>home</a>
<span class=cut></span>
<a id=docs-link class=banner-link>docs</a>
<span class=cut></span>
<a id=auth-link class=banner-link>auth</a>
<span class=cut></span>
<a href=https://gist.github.com target=_blank class=banner-link>gist</a>
<span class=cut></span>
<a href=https://github.com/coshMain/coshMain.github.io target=_blank class=banner-link>repo</a>
<span class=cut></span>
<a href=https://github.com/coshMain/coshMain.github.io/issues target=_blank class=banner-link>bugs</a>
<span class=cut></span>
<a id=more-link class=banner-link>more</a>
</span>
<!-- This is the editor side of the banner. -->
<span id=editor-links>
<span id=filename></span>
<span id=file-description contenteditable></span>
</span>
<div id=fade></div>
</div>
<!-- The board and slate. -->
<div id=board></div>
<div id=slate></div>
<!-- The footer beneath the slate that contains the input counter and clock. -->
<div id=footer>
<span id=slate-count class=slate-counter>1</span>
<span id=clock></span>
</div>
<!-- The chit editor. -->
<div id=editor></div>