1.1 --- a/templates/theme.html Fri Jan 17 16:51:06 2014 +0100
1.2 +++ b/templates/theme.html Fri Jan 17 16:54:20 2014 +0100
1.3 @@ -63,7 +63,7 @@
1.4 </div>
1.5 </header>
1.6 <div id="main">
1.7 -
1.8 +
1.9 {% block body %}{% endblock %}
1.10 </div><!-- /main -->
1.11 </div> <!-- /wrap -->
1.12 @@ -73,7 +73,19 @@
1.13 <!-- Placed at the end of the document so the pages load faster -->
1.14 <script src="/static/js/jquery-1.10.2.min.js"></script>
1.15 <script src="static/js/bootstrap.js"></script>
1.16 + <script type="text/javascript">
1.17 + $(document).ready(function() {
1.18 + $('#myCarousel').carousel({
1.19 + interval: 5000
1.20 + })
1.21
1.22 + $('#myCarousel').on('slid.bs.carousel', function() {
1.23 + //alert("slid");
1.24 + });
1.25 +
1.26 +
1.27 +});
1.28 + </script>
1.29
1.30 </body>
1.31 </html>