soma.js
Version:
soma.js is a javascript framework created to build scalable and maintainable applications.
30 lines (23 loc) • 847 B
HTML
<html>
<head>
<title>soma.js | hello world</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<div class="container"></div>
<script type="text/javascript" src="js/libs/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="../../build/soma.js"></script>
<script type="text/javascript" src="js/color.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36294101-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>