added index.html

master
Abhinav Sarkar 2013-09-15 03:23:42 +05:30
parent 6c5ed886bd
commit 07c53dcf2b
2 changed files with 16 additions and 0 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@ pom.xml.asc
*.class
/.lein-*
/.nrepl-port
/resources/public/js

View File

@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Simple CLJS</title>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<!-- pointing to cljsbuild generated js file -->
<script src="js/frpong.js"></script>
<script type="text/javascript">frpong.core.init()</script>
</body>
</html>