diff options
| author | Joel Martin <github@martintribe.org> | 2014-04-06 16:49:45 -0500 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2014-04-06 16:49:45 -0500 |
| commit | 7da12c9947aa8b22012e90ca6569ccc76dd6ce68 (patch) | |
| tree | a44d5b3a9cc7f8022eed5172c761c91c8a82f333 /index.html | |
| parent | 31b4416181158b0e49e0a09da8056298b8522ba2 (diff) | |
| download | mal-7da12c9947aa8b22012e90ca6569ccc76dd6ce68.tar.gz mal-7da12c9947aa8b22012e90ca6569ccc76dd6ce68.zip | |
Create live page.
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..b8b3dd0 --- /dev/null +++ b/index.html @@ -0,0 +1,52 @@ +<!doctype html> +<html> +<head> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="chrome=1"> + <title>Make a Lisp</title> + <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> + <link href='http://fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css'> + <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css"> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> + <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script> + <script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.2/underscore-min.js"></script> + <!--<script>Josh = {Debug: true };</script>--> + <script src="js/josh.js/js/killring.js"></script> + <script src="js/josh.js/js/history.js"></script> + <script src="js/josh.js/js/readline.js"></script> + <script src="js/josh.js/js/shell.js"></script> + <script src="js/josh_readline.js"></script> + <style type="text/css"> + #shell-panel { + height: 400px; + width: 100%; + background-color: #002f05; + color: #00fe00; + padding: 20px 20px 20px 20px; + font-family: 'Source Code Pro'; + overflow: scroll; + overflow-x: hidden; + overflow-y: scroll; + border: 1px dashed #E6EBE0; + } + + #shell-cli .prompt { + font-weight: bold; + }</style> +</head> +<body> + <div class="wrapper"> + + <section> + <h1>Make a Lisp</h1> + + <div id="shell-panel"> + <div>Lisp REPL</div> + <div id="shell-view"></div> + </div> + </section> + </div> + + <script src="js/mal_web.js"></script> +</body> +</html> |
