1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/templates/theme.html Wed Nov 27 12:40:37 2013 +0100
1.3 @@ -0,0 +1,92 @@
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>Navbar Template for Bootstrap</title>
1.15 +
1.16 + <!-- Bootstrap core CSS -->
1.17 + <link href="/static/css/bootstrap.css" rel="stylesheet">
1.18 +
1.19 + <!-- Custom styles for this template -->
1.20 + <link href="/static/css/navbar.css" rel="stylesheet">
1.21 +
1.22 + <!-- Custom styles for pymove3d -->
1.23 + <link href="/static/css/pymove3d.css" rel="stylesheet">
1.24 +
1.25 +
1.26 + <!-- Just for debugging purposes. Don't actually copy this line! -->
1.27 + <!--[if lt IE 9]><script src="/static/js/ie8-responsive-file-warning.js"></script><![endif]-->
1.28 +
1.29 + <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
1.30 + <!--[if lt IE 9]>
1.31 + <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
1.32 + <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
1.33 + <![endif]-->
1.34 + </head>
1.35 +
1.36 + <body>
1.37 +
1.38 + <div class="container">
1.39 +
1.40 + <!-- Static navbar -->
1.41 + <div class="navbar navbar-default" role="navigation">
1.42 + <div class="navbar-header">
1.43 + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
1.44 + <span class="sr-only">Toggle navigation</span>
1.45 + <span class="icon-bar"></span>
1.46 + <span class="icon-bar"></span>
1.47 + <span class="icon-bar"></span>
1.48 + </button>
1.49 + <a class="navbar-brand" href="#">PyMove3D -- 2014</a>
1.50 + </div>
1.51 + <div class="navbar-collapse collapse">
1.52 + <!--ul class="nav navbar-nav">
1.53 + <li class="active"><a href="#">Link</a></li>
1.54 + <li><a href="#">Link</a></li>
1.55 + <li><a href="#">Link</a></li>
1.56 + <li class="dropdown">
1.57 + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
1.58 + <ul class="dropdown-menu">
1.59 + <li><a href="#">Action</a></li>
1.60 + <li><a href="#">Another action</a></li>
1.61 + <li><a href="#">Something else here</a></li>
1.62 + <li class="divider"></li>
1.63 + <li class="dropdown-header">Nav header</li>
1.64 + <li><a href="#">Separated link</a></li>
1.65 + <li><a href="#">One more separated link</a></li>
1.66 + </ul>
1.67 + </li>
1.68 + </ul-->
1.69 + <ul class="nav navbar-nav navbar-right">
1.70 + <li class="active"><a href="/competition">Competition</a></li>
1.71 + <li><a href="/task">Task</a></li>
1.72 + <li><a href="/submission">Submission</a></li>
1.73 + <li><a href="/coursematerial">Course material</a></li>
1.74 + </ul>
1.75 + </div><!--/.nav-collapse -->
1.76 + </div>
1.77 +
1.78 + <!-- Main component for a primary marketing message or call to action -->
1.79 + <div class="jumbotron">
1.80 + {% block jumbotron %}{% endblock %}
1.81 + </div>
1.82 +
1.83 + {% block body %}{% endblock %}
1.84 +
1.85 + </div> <!-- /container -->
1.86 +
1.87 +
1.88 + <!-- Bootstrap core JavaScript
1.89 + ================================================== -->
1.90 + <!-- Placed at the end of the document so the pages load faster -->
1.91 + <script src="/static/js/jquery-1.js"></script>
1.92 + <script src="static/js/bootstrap.js"></script>
1.93 +
1.94 +
1.95 +</body></html>