forked from espadrine/sc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
59 lines (50 loc) · 1.46 KB
/
index.html
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
<!doctype html>
<meta charset=utf-8>
<link rel=stylesheet type=text/css href=./doc/screen.css>
<title>ScoutCamp</title>
<h1 class=glow>Scout<span class=purple>Camp</span></h1>
<div class=right>
<span class=ipa>/skoutkamp/</span> Web apps done right.
</div>
<p class=speech>
"Hassle-free Node.js server framework.<br>
Arbitrary routers. Cookies. Forms. Auth.<br>
Compiled templates. Fetch. WebSockets. Server-Side Events."
</p>
<table class=downloads>
<tr>
<td><a
href=http://github.com/espadrine/sc/zipball/master
class="zipball">DOWNLOAD</a>
<td><a
href=http://github.com/espadrine/sc
class="browse">SOURCES</a>
</table>
<h2>Instructions</h2>
<pre>
$ npm install camp
</pre>
<p>
Start with the
<a href=http://github.com/espadrine/sc/blob/master/README.md>readme</a>.
<br>
Look at an
<a href="https://github.com/espadrine/sc/blob/master/app.js">example</a>.
<br>
Read the
<a href=http://github.com/espadrine/sc/blob/master/doc/Readme.md>reference</a>.
</p>
<script> /* WEB FONTS */
WebFontConfig = {
google: { families: [ 'Ubuntu+Mono::latin', 'Droid Sans', 'IM Fell DW Pica' ] }
};
(function () {
var wf = document.createElement ('script');
// The following does not work in file://
wf.src = '//ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName ('script')[0];
s.parentNode.insertBefore (wf, s);
})();
</script>