|
1 <!DOCTYPE html> |
|
2 <html lang="en"><head> |
|
3 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
|
4 <meta charset="utf-8"> |
|
5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|
6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
7 <meta name="description" content=""> |
|
8 <meta name="author" content=""> |
|
9 <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico')}}"> |
|
10 |
|
11 <title>Navbar Template for Bootstrap</title> |
|
12 |
|
13 <!-- Bootstrap core CSS --> |
|
14 <link href="/static/css/bootstrap.css" rel="stylesheet"> |
|
15 |
|
16 <!-- Custom styles for this template --> |
|
17 <link href="/static/css/navbar.css" rel="stylesheet"> |
|
18 |
|
19 <!-- Custom styles for pymove3d --> |
|
20 <link href="/static/css/pymove3d.css" rel="stylesheet"> |
|
21 |
|
22 |
|
23 <!-- Just for debugging purposes. Don't actually copy this line! --> |
|
24 <!--[if lt IE 9]><script src="/static/js/ie8-responsive-file-warning.js"></script><![endif]--> |
|
25 |
|
26 <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> |
|
27 <!--[if lt IE 9]> |
|
28 <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> |
|
29 <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> |
|
30 <![endif]--> |
|
31 </head> |
|
32 |
|
33 <body> |
|
34 |
|
35 <div class="container"> |
|
36 |
|
37 <!-- Static navbar --> |
|
38 <div class="navbar navbar-default" role="navigation"> |
|
39 <div class="navbar-header"> |
|
40 <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> |
|
41 <span class="sr-only">Toggle navigation</span> |
|
42 <span class="icon-bar"></span> |
|
43 <span class="icon-bar"></span> |
|
44 <span class="icon-bar"></span> |
|
45 </button> |
|
46 <a class="navbar-brand" href="#">PyMove3D -- 2014</a> |
|
47 </div> |
|
48 <div class="navbar-collapse collapse"> |
|
49 <!--ul class="nav navbar-nav"> |
|
50 <li class="active"><a href="#">Link</a></li> |
|
51 <li><a href="#">Link</a></li> |
|
52 <li><a href="#">Link</a></li> |
|
53 <li class="dropdown"> |
|
54 <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a> |
|
55 <ul class="dropdown-menu"> |
|
56 <li><a href="#">Action</a></li> |
|
57 <li><a href="#">Another action</a></li> |
|
58 <li><a href="#">Something else here</a></li> |
|
59 <li class="divider"></li> |
|
60 <li class="dropdown-header">Nav header</li> |
|
61 <li><a href="#">Separated link</a></li> |
|
62 <li><a href="#">One more separated link</a></li> |
|
63 </ul> |
|
64 </li> |
|
65 </ul--> |
|
66 <ul class="nav navbar-nav navbar-right"> |
|
67 <li class="active"><a href="/competition">Competition</a></li> |
|
68 <li><a href="/task">Task</a></li> |
|
69 <li><a href="/submission">Submission</a></li> |
|
70 <li><a href="/coursematerial">Course material</a></li> |
|
71 </ul> |
|
72 </div><!--/.nav-collapse --> |
|
73 </div> |
|
74 |
|
75 <!-- Main component for a primary marketing message or call to action --> |
|
76 <div class="jumbotron"> |
|
77 {% block jumbotron %}{% endblock %} |
|
78 </div> |
|
79 |
|
80 {% block body %}{% endblock %} |
|
81 |
|
82 </div> <!-- /container --> |
|
83 |
|
84 |
|
85 <!-- Bootstrap core JavaScript |
|
86 ================================================== --> |
|
87 <!-- Placed at the end of the document so the pages load faster --> |
|
88 <script src="/static/js/jquery-1.js"></script> |
|
89 <script src="static/js/bootstrap.js"></script> |
|
90 |
|
91 |
|
92 </body></html> |