Initial commit of Splash, a programming language aimed at kids. This was all done over the course of a 2 hour bus ride, and is currently only half working. Feel free to browse, keep checking back for a fully working build (scripts currently compile but do nothing in the browser)
This commit is contained in:
commit
4e973d0b0f
11 changed files with 607 additions and 0 deletions
15
lib/app_base/index.html
Normal file
15
lib/app_base/index.html
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Splash - Kids Programming Rocks</title>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="css/base.css">
|
||||
<script type="text/javascript" src="scripts/jquery.js"></script>
|
||||
<script type="text/javascript" src="scripts/compiled.js"></script>
|
||||
<script type="text/javascript" src="scripts/splash.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="splash_app_wrapper">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in a new issue