1.1 --- a/templates/theme.html Fri Jan 17 16:54:53 2014 +0100
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,91 +0,0 @@
1.4 -<!DOCTYPE html>
1.5 -<html lang="en"><head>
1.6 -<meta http-equiv="content-type" content="text/html; charset=UTF-8">
1.7 -<meta charset="utf-8">
1.8 -<!--meta http-equiv="X-UA-Compatible" content="IE=edge"-->
1.9 -<meta name="viewport" content="width=device-width, initial-scale=1.0">
1.10 -<meta name="description" content="">
1.11 -<meta name="author" content="">
1.12 -<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico')}}">
1.13 -
1.14 -<title>PyMove3D -- 2014</title>
1.15 -
1.16 -<!-- Bootstrap core CSS -->
1.17 -<link href="/static/css/bootstrap.css" rel="stylesheet">
1.18 -
1.19 -<!-- Just for debugging purposes. Don't actually copy this line! -->
1.20 -<!--[if lt IE 9]><script src="/static/js/ie8-responsive-file-warning.js"></script><![endif]-->
1.21 -
1.22 -<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
1.23 - <!--[if lt IE 9]>
1.24 - <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
1.25 - <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
1.26 - <![endif]-->
1.27 - </head>
1.28 -
1.29 - <body>
1.30 - <div id="wrap">
1.31 - <header>
1.32 - <!-- Fixed navbar -->
1.33 - <div class="navbar navbar-default" role="navigation">
1.34 - <div class="container">
1.35 - <div class="navbar-header">
1.36 - <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
1.37 - <span class="sr-only">Toggle navigation</span>
1.38 - <span class="icon-bar"></span>
1.39 - <span class="icon-bar"></span>
1.40 - <span class="icon-bar"></span>
1.41 - </button>
1.42 - <a class="navbar-brand" href="/"><img class="logo" src="/static/images/PyMove3D.png" title="PyMove3D" alt="logo pymove3d" /></a>
1.43 - </div>
1.44 - <div class="collapse navbar-collapse">
1.45 - <ul class="nav navbar-nav">
1.46 - {% for href, caption in [('/competition', 'Competition'),
1.47 - ('/task', 'Task'),
1.48 - ('/submission', 'Submission'),
1.49 - ('/coursematerial', 'Coursematerial'),
1.50 - ]:
1.51 - %}
1.52 - {%- if href[1:] == act -%}
1.53 - <li class="active">{% else %} <li>{% endif %}<a href="{{ href }}" >{{ caption }}</a></li>
1.54 - {% endfor %}
1.55 - </ul>
1.56 - <ul class="nav navbar-nav navbar-right">
1.57 - <li class="active"><a href="./"> <img class="flags" src="/static/images/flags/de.png" alt="deutsch" />
1.58 - </a></li>
1.59 - <li><a href="../navbar-static-top/"><img class ="flags" src="/static/images/flags/gb.png" alt="english" />
1.60 - </a></li>
1.61 - <li><a href="../navbar-fixed-top/"><img class="flags" src="/static/images/flags/it.png" alt="italiano" />
1.62 - </a></li>
1.63 - </ul>
1.64 - </div><!--/.nav-collapse -->
1.65 - </div>
1.66 - </div>
1.67 - </header>
1.68 - <div id="main">
1.69 -
1.70 - {% block body %}{% endblock %}
1.71 - </div><!-- /main -->
1.72 - </div> <!-- /wrap -->
1.73 - {% include "footer.html" %}
1.74 - <!-- Bootstrap core JavaScript
1.75 - ================================================== -->
1.76 - <!-- Placed at the end of the document so the pages load faster -->
1.77 - <script src="/static/js/jquery-1.10.2.min.js"></script>
1.78 - <script src="static/js/bootstrap.js"></script>
1.79 - <script type="text/javascript">
1.80 - $(document).ready(function() {
1.81 - $('#myCarousel').carousel({
1.82 - interval: 5000
1.83 - })
1.84 -
1.85 - $('#myCarousel').on('slid.bs.carousel', function() {
1.86 - //alert("slid");
1.87 - });
1.88 -
1.89 -
1.90 -});
1.91 - </script>
1.92 -
1.93 - </body>
1.94 - </html>