2015-03-03 22:49:43 +01:00
|
|
|
<!doctype html>
|
2015-03-04 08:11:52 +01:00
|
|
|
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
|
|
|
|
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
|
|
|
|
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
|
|
|
|
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<title>Rollerverbrauch</title>
|
|
|
|
<meta name="description" content="">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2015-03-05 08:02:57 +01:00
|
|
|
<!-- <link rel="apple-touch-icon" href="{{ url_for('static', filename='apple-touch-icon.png') }}">
|
2015-03-04 08:11:52 +01:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='normalize.min.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}">
|
|
|
|
|
2015-03-05 08:02:57 +01:00
|
|
|
<script src="{{ url_for('static', filename='modernizr-2.8.3-respond-1.4.2.min.js') }}"></script>-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Latest compiled and minified CSS -->
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
|
2015-03-04 08:11:52 +01:00
|
|
|
|
2015-03-05 08:02:57 +01:00
|
|
|
<!-- Optional theme -->
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
|
2015-03-04 08:11:52 +01:00
|
|
|
|
2015-03-05 08:02:57 +01:00
|
|
|
<!-- Latest compiled and minified JavaScript -->
|
|
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<nav class="navbar navbar-inverse navbar-fixed-top">
|
|
|
|
<div class="container">
|
|
|
|
<div class="navbar-header">
|
|
|
|
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
|
|
<span class="sr-only">Toggle navigation</span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
</button>
|
|
|
|
<a class="navbar-brand" href="{{ url_for('getPitStops') }}">Rollerverbrauch</a>
|
|
|
|
</div>
|
|
|
|
<div id="navbar" class="collapse navbar-collapse">
|
|
|
|
<ul class="nav navbar-nav">
|
|
|
|
{% block navigation %}
|
|
|
|
{% endblock %}
|
|
|
|
</ul>
|
|
|
|
</div><!--/.nav-collapse -->
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="starter-template">
|
2015-03-04 08:11:52 +01:00
|
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
2015-03-05 08:02:57 +01:00
|
|
|
</div>
|
2015-03-04 08:11:52 +01:00
|
|
|
</div>
|
2015-03-05 08:02:57 +01:00
|
|
|
|
2015-03-04 08:11:52 +01:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|