Skip to content

Commit 2e6ead0

Browse files
committedDec 11, 2014
add stuff
1 parent a3a9036 commit 2e6ead0

File tree

5 files changed

+62346
-0
lines changed

5 files changed

+62346
-0
lines changed
 

‎beeps.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<html>
2+
<head>
3+
</head>
4+
<body>
5+
<script type="text/javascript" src="beeps.js"></script>
6+
</body>
7+
</html>

‎beeps.js

+27,079
Large diffs are not rendered by default.

‎index.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# CLJ Art Collective <3
2+
3+
(the "<3" is pronounced "with a heart")
4+
5+
## Clojurescript Sketches
6+
7+
[squares](squares.html)
8+
[beeps](beeps.html)

‎squares.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<html>
2+
<head>
3+
<style type="text/css">
4+
.square {
5+
width: 50px;
6+
height: 50px;
7+
border: 1px solid black;
8+
float: left;
9+
}
10+
</style>
11+
</head>
12+
<body>
13+
<script type="text/javascript" src="squares.js"></script>
14+
</body>
15+
</html>

‎squares.js

+35,237
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.