1

Adding static references to scripts and style sheets

This commit is contained in:
Alex Yatskov 2015-02-27 17:23:41 +09:00
parent ba3f2e6acd
commit 3245bfe70b

View File

@ -3,8 +3,7 @@
<head> <head>
<title>Reactive Search</title> <title>Reactive Search</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"> <meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- inject:css --> <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<!-- endinject -->
</head> </head>
<body> <body>
<div class="container"> <div class="container">
@ -97,7 +96,13 @@
</div> </div>
</div> </div>
<!-- inject:js --> <script src="bower_components/jquery/dist/jquery.js"></script>
<!-- endinject --> <script src="bower_components/handlebars/handlebars.js"></script>
<script src="bower_components/underscore/underscore.js"></script>
<script src="bower_components/tinycolor/tinycolor.js"></script>
<script src="bower_components/snap.svg/dist/snap.svg-min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="scripts/application.js"></script>
<script src="scripts/grapher.js"></script>
</body> </body>
</html> </html>