-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathindex.html
78 lines (63 loc) · 4.28 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>ClojureScript Koans</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel='stylesheet' href='css/style.css'/>
<link href='http://fonts.googleapis.com/css?family=Sorts+Mill+Goudy' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="koans.js" type="text/javascript"></script>
</head>
<body>
<div class='category'></div>
<img class='circle' src="images/zencircle.png"></div>
<div id='welcome' class='static unfaded'>
<div class='content'>
<h1>ClojureScript Koans</h1>
<p>The ClojureScript koans walk you along the path of enlightenment to learning <a href="http://clojurescript.com">ClojureScript</a>. You will explore the mysteries of the ClojureScript language through a series of interactive exercises in your web browser.</p>
<p>You don't need any experience with Clojure or ClojureScript. The koans will expose you to the fundamentals of ClojureScript, from basic concepts and syntax through more advanced techniques.</p>
<p>If you become vexed, do not be afraid to seek help. You may find it particularly useful to keep a <a href="http://clojurescript.net">ClojureScript REPL</a> handy as you proceed.</p>
<noscript>
<strong>You will need to enable JavaScript to begin your journey.</strong>
</noscript>
<a href="#equality/1" class='start'>Let us begin ›</a>
<p class='about'>The ClojureScript Koans were built by <a href="http://lazerwalker.com">Em Lazer-Walker</a>, and are based on the <a href="http://clojurekoans.com">Clojure Koans</a>. The source code is available on <a href="https://github.com/lazerwalker/clojurescript-koans">GitHub</a>.</p>
</div>
</div>
<div id='the-end' class='static' style='display: none'>
<div class='content'>
<h1>The End</h1>
<p>You have completed the koans, but your true journey is just beginning. Here are a few resources to help you along your way.</p>
<ul>
<li><a href="http://www.amazon.com/gp/product/1935182641/?tag=cljs-koans-20">The Joy of Clojure</a>
<li>The <a href="http://clojurescript.com">ClojureScript project</a> on GitHub</a></li>
<li>An in-browser <a href="http://clojurescript.net">ClojureScript REPL</a>
<li><a href="http://clojuredocs.org">Clojure Docs</a> (core library documentation)</li>
<li><a href="http://swannodette.github.io/2013/10/27/the-essence-of-clojurescript/">The Essence of ClojureScript</a> and <a href="http://swannodette.github.io/2013/11/07/clojurescript-101/">ClojureScript 101</a></li>
</ul>
<div class='share'>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://clojurescriptkoans.com" data-text="I just completed the ClojureScript Koans!" data-size="large" data-count="none" data-dnt="true">Tweet</a>
<div class="fb-share-button" data-href="http://clojurescriptkoans.com" data-type="button"></div>
</div>
</div>
</div>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "http://connect.facebook.net/en_US/all.js#xfbml=1&appId=1420628631501258";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','http://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45944530-1', 'clojurescriptkoans.com');
ga('send', 'pageview');
</script>
</body>
</html>